| 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 recipe_engine.config import config_item_context, ConfigGroup | 7 from recipe_engine.config import config_item_context, ConfigGroup |
| 8 from recipe_engine.config import ConfigList, Dict, List, Single, Static | 8 from recipe_engine.config import ConfigList, Dict, List, Single, Static |
| 9 from recipe_engine.config_types import Path | 9 from recipe_engine.config_types import Path |
| 10 | 10 |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 | 210 |
| 211 @config_ctx(includes=['main_builder']) | 211 @config_ctx(includes=['main_builder']) |
| 212 def non_device_wipe_provisioning(c): | 212 def non_device_wipe_provisioning(c): |
| 213 c.chrome_specific_wipe = True | 213 c.chrome_specific_wipe = True |
| 214 | 214 |
| 215 @config_ctx(includes=['main_builder']) | 215 @config_ctx(includes=['main_builder']) |
| 216 def incremental_coverage_builder_tests(c): | 216 def incremental_coverage_builder_tests(c): |
| 217 c.incremental_coverage = True | 217 c.incremental_coverage = True |
| 218 | 218 |
| 219 @config_ctx() | 219 @config_ctx() |
| 220 def perf(c): | 220 def chromium_perf(c): |
| 221 pass | 221 pass |
| 222 | 222 |
| 223 @config_ctx() | 223 @config_ctx() |
| 224 def cast_builder(c): | 224 def cast_builder(c): |
| 225 pass | 225 pass |
| 226 | 226 |
| 227 @config_ctx(includes=['x86_builder']) | 227 @config_ctx(includes=['x86_builder']) |
| 228 def gce_builder(c): | 228 def gce_builder(c): |
| 229 c.gce_setup = True | 229 c.gce_setup = True |
| 230 c.gce_snapshot = 'clean-22-l-phone-snapshot' | 230 c.gce_snapshot = 'clean-22-l-phone-snapshot' |
| 231 c.gce_count = 6 | 231 c.gce_count = 6 |
| OLD | NEW |