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

Unified Diff: scripts/slave/recipe_modules/chromium_android/chromium_config.py

Issue 1642553003: [Android] Switch the x86, x64, and mips builders on chromium.android to mb. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 11 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
Index: scripts/slave/recipe_modules/chromium_android/chromium_config.py
diff --git a/scripts/slave/recipe_modules/chromium_android/chromium_config.py b/scripts/slave/recipe_modules/chromium_android/chromium_config.py
index 0f6e4cab24b6f85e0a17c5a70cba6e60695f85a0..a2d94ad351be865feb819d617d6129f4b2724d8f 100644
--- a/scripts/slave/recipe_modules/chromium_android/chromium_config.py
+++ b/scripts/slave/recipe_modules/chromium_android/chromium_config.py
@@ -49,12 +49,20 @@ def x86_builder(c):
raise recipe_config.BadConf(
'Cannot target x86 with TARGET_ARCH == %s' % c.TARGET_ARCH)
+@CONFIG_CTX(includes=['x86_builder', 'mb'])
+def x86_builder_mb(c):
+ pass
+
@CONFIG_CTX(includes=['base_config', 'default_compiler'],
config_vars={'TARGET_ARCH': 'mipsel'})
def mipsel_builder(c):
if c.TARGET_ARCH != 'mipsel': # pragma: no cover
raise recipe_config.BadConf('I dunno what to put in a mips builder!')
+@CONFIG_CTX(includes=['mipsel_builder', 'mb'])
+def mipsel_builder_mb(c):
+ pass
+
@CONFIG_CTX(includes=['main_builder'])
def dartium_builder(c):
c.compile_py.default_targets=['chrome_apk', 'content_shell_apk']
@@ -85,9 +93,9 @@ def arm_l_builder_lto(c): # pragma: no cover
def arm_l_builder_rel(c): # pragma: no cover
pass
-@CONFIG_CTX(includes=['base_config', 'default_compiler', 'goma'],
+@CONFIG_CTX(includes=['base_config', 'default_compiler', 'goma', 'mb'],
config_vars={'TARGET_ARCH': 'intel', 'TARGET_BITS': 64})
-def x64_builder(c):
+def x64_builder_mb(c):
if c.TARGET_ARCH != 'intel' or c.TARGET_BITS != 64:
raise recipe_config.BadConf(
'Cannot target x64 with TARGET_ARCH == %s, TARGET_BITS == %d'

Powered by Google App Engine
This is Rietveld 408576698