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

Unified Diff: tools/mb/mb_config.pyl

Issue 1294663002: Add support for the GYP_CROSSCOMPILE env var to MB. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix_linux_dbg
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« tools/mb/mb.py ('K') | « tools/mb/mb.py ('k') | tools/mb/mb_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/mb/mb_config.pyl
diff --git a/tools/mb/mb_config.pyl b/tools/mb/mb_config.pyl
index e7496887453b6b5ca582560796ff914d5dd0adbe..b0ca0d0d043b463a25ce7d78955ef2d28b624201 100644
--- a/tools/mb/mb_config.pyl
+++ b/tools/mb/mb_config.pyl
@@ -41,7 +41,7 @@
'gn_release_trybot_x86': ['gn', 'release_trybot', 'x86'],
'gyp_debug_bot': ['gyp', 'debug_bot'],
'gyp_debug_bot_x86': ['gyp', 'debug_bot', 'x86'],
- 'gyp_release_bot_arm': ['gyp', 'release_bot', 'arm'],
+ 'gyp_release_bot_arm': ['gyp', 'release_bot', 'arm', 'crosscompile'],
'gyp_release_trybot': ['gyp', 'release_trybot'],
# This is just for completeness; any bot that uses this config should never actually run MB.
@@ -57,8 +57,8 @@
'swarming_gyp_debug_trybot_x86': ['swarming', 'gyp', 'debug_trybot', 'x86'],
'swarming_gyp_release_bot': ['swarming', 'gyp', 'release_bot'],
'swarming_gyp_release_trybot': ['swarming', 'gyp', 'release_trybot'],
- 'swarming_gyp_release_trybot_arm': ['swarming', 'gyp', 'release_trybot', 'arm'],
- 'swarming_gyp_release_trybot_arm_float': ['swarming', 'gyp', 'release_trybot', 'arm_float'],
+ 'swarming_gyp_release_trybot_arm': ['swarming', 'gyp', 'release_trybot', 'arm', 'crosscompile'],
+ 'swarming_gyp_release_trybot_arm_float': ['swarming', 'gyp', 'release_trybot', 'arm_float', 'crosscompile'],
'swarming_tsan_gyp_release_trybot': ['swarming', 'disable_nacl', 'tsan', 'gyp', 'release_trybot'],
# clang/win doesn't work with goma yet, so this can't use debug_bot:
@@ -131,6 +131,10 @@
'gyp_defines': 'clang=1',
},
+ 'crosscompile': {
Nico 2015/08/14 00:14:30 Maybe add a comment that it's usually not necessar
Dirk Pranke 2015/08/14 00:19:17 Will do.
+ 'gyp_crosscompile': True,
+ },
+
'dcheck_always_on': {
'gn_args': 'dcheck_always_on=true',
'gyp_defines': 'dcheck_always_on=1',
« tools/mb/mb.py ('K') | « tools/mb/mb.py ('k') | tools/mb/mb_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698