Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/config.py

Issue 2030713004: Refactor chromium.perf recipe configs. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@2-refactorr
Patch Set: FYI configs. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698