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

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: Rebase, hope it's right :) Created 4 years, 4 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 211
212 @config_ctx(includes=['main_builder']) 212 @config_ctx(includes=['main_builder'])
213 def non_device_wipe_provisioning(c): 213 def non_device_wipe_provisioning(c):
214 c.chrome_specific_wipe = True 214 c.chrome_specific_wipe = True
215 215
216 @config_ctx(includes=['main_builder']) 216 @config_ctx(includes=['main_builder'])
217 def incremental_coverage_builder_tests(c): 217 def incremental_coverage_builder_tests(c):
218 c.incremental_coverage = True 218 c.incremental_coverage = True
219 219
220 @config_ctx() 220 @config_ctx()
221 def perf(c): 221 def chromium_perf(c):
222 pass 222 pass
223 223
224 @config_ctx() 224 @config_ctx()
225 def cast_builder(c): 225 def cast_builder(c):
226 pass 226 pass
227 227
228 @config_ctx(includes=['x86_builder']) 228 @config_ctx(includes=['x86_builder'])
229 def gce_builder(c): 229 def gce_builder(c):
230 c.gce_setup = True 230 c.gce_setup = True
231 c.gce_snapshot = 'clean-22-l-phone-snapshot' 231 c.gce_snapshot = 'clean-22-l-phone-snapshot'
232 c.gce_count = 6 232 c.gce_count = 6
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698