| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import types | 5 import types |
| 6 | 6 |
| 7 from common import cros_chromite | 7 from common import cros_chromite |
| 8 from slave.recipe_config import config_item_context, ConfigGroup | 8 from recipe_engine.config import config_item_context, ConfigGroup |
| 9 from slave.recipe_config import Dict, Single, Set | 9 from recipe_engine.config import Dict, Single, Set |
| 10 | 10 |
| 11 import DEPS | 11 import DEPS |
| 12 path_api = DEPS['path'].api | 12 path_api = DEPS['path'].api |
| 13 | 13 |
| 14 | 14 |
| 15 def BaseConfig(**_kwargs): | 15 def BaseConfig(**_kwargs): |
| 16 return ConfigGroup( | 16 return ConfigGroup( |
| 17 # Base mapping of repository key to repository name. | 17 # Base mapping of repository key to repository name. |
| 18 repositories = Dict(value_type=Set(basestring)), | 18 repositories = Dict(value_type=Set(basestring)), |
| 19 | 19 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 | 88 |
| 89 @config_ctx() | 89 @config_ctx() |
| 90 def chromeos_tryserver_etc(c): | 90 def chromeos_tryserver_etc(c): |
| 91 c.cbb.clobber = True | 91 c.cbb.clobber = True |
| 92 | 92 |
| 93 @config_ctx() | 93 @config_ctx() |
| 94 def chromiumos_coverage_test(c): | 94 def chromiumos_coverage_test(c): |
| 95 c.use_chrome_version = True | 95 c.use_chrome_version = True |
| 96 c.read_cros_manifest = True | 96 c.read_cros_manifest = True |
| 97 c.cbb.chrome_rev = 'stable' | 97 c.cbb.chrome_rev = 'stable' |
| OLD | NEW |