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

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

Issue 1777863005: Recipe changes to move webview perf bots to the android/perf recipe (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rebase. Created 4 years, 8 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 | Annotate | Revision Log
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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698