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

Unified Diff: masters/master.chromium.perf/master.cfg

Issue 2456143002: Switch Android Compile to the chromium recipe (Closed)
Patch Set: Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.chromium.perf/master.cfg
diff --git a/masters/master.chromium.perf/master.cfg b/masters/master.chromium.perf/master.cfg
index b33fe24533231bcc89d18745d834b071d8839c6a..4213711ebde2ce2d55ae0228669f716367d6033d 100644
--- a/masters/master.chromium.perf/master.cfg
+++ b/masters/master.chromium.perf/master.cfg
@@ -116,14 +116,14 @@ def _CategoryIndex(category):
_builder_names = []
-def _AddBuilder(name, platform, timeout=None, target_bits=64):
+def _AddBuilder(name, platform, recipe=None, timeout=None, target_bits=64):
if platform == 'android':
factory = recipe_factory
- recipe = 'android/builder'
+ recipe = recipe or 'android/builder'
bb_trigger = True
ghost stip (do not use) 2016/10/28 18:42:22 once we convert everything, we can delete this who
dtu 2016/10/28 19:08:58 :)
else:
factory = m_remote_run_chromium_src
- recipe = 'chromium'
+ recipe = recipe or 'chromium'
bb_trigger = False
factory_kwargs = dict(
@@ -181,7 +181,7 @@ c['builders'] = []
_AddBuilder('Android Builder', 'android', target_bits=32)
-_AddBuilder('Android Compile', 'android', target_bits=32)
+_AddBuilder('Android Compile', 'android', target_bits=32, recipe='chromium')
_AddBuilder('Android arm64 Builder', 'android')
_AddBuilder('Win Builder', 'win', timeout=3600, target_bits=32)
# TODO(dtu): decrease the timeout when https://crbug.com/617982 is fixed.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698