| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 | 205 |
| 206 @config_ctx(includes=['main_builder']) | 206 @config_ctx(includes=['main_builder']) |
| 207 def incremental_coverage_builder_tests(c): | 207 def incremental_coverage_builder_tests(c): |
| 208 c.incremental_coverage = True | 208 c.incremental_coverage = True |
| 209 | 209 |
| 210 @config_ctx() | 210 @config_ctx() |
| 211 def perf(c): | 211 def perf(c): |
| 212 pass | 212 pass |
| 213 | 213 |
| 214 @config_ctx() | 214 @config_ctx() |
| 215 def webview_perf(c): | |
| 216 pass | |
| 217 | |
| 218 @config_ctx() | |
| 219 def cast_builder(c): | 215 def cast_builder(c): |
| 220 pass | 216 pass |
| 221 | 217 |
| 222 @config_ctx(includes=['x86_builder']) | 218 @config_ctx(includes=['x86_builder']) |
| 223 def gce_builder(c): | 219 def gce_builder(c): |
| 224 c.gce_setup = True | 220 c.gce_setup = True |
| 225 c.gce_snapshot = 'clean-22-l-phone-snapshot' | 221 c.gce_snapshot = 'clean-22-l-phone-snapshot' |
| 226 c.gce_count = 6 | 222 c.gce_count = 6 |
| OLD | NEW |