Index: tools/mb/mb_config.pyl |
diff --git a/tools/mb/mb_config.pyl b/tools/mb/mb_config.pyl |
index 61263189c17dfa00b957818e99424224f14502e5..10882036c3b9719afef18210e527a0c8d644a52f 100644 |
--- a/tools/mb/mb_config.pyl |
+++ b/tools/mb/mb_config.pyl |
@@ -19,6 +19,7 @@ |
'android_gyp_debug_static_bot': ['android', 'gyp', 'debug_static_bot'], |
'android_gyp_debug_static_bot_arm64': ['android', 'gyp', 'debug_static_bot', 'arm64'], |
'android_gyp_release_bot': ['android', 'gyp', 'release_bot'], |
+ 'android_gyp_release_bot_minimal_symbols': ['android', 'gyp', 'release_bot', 'minimal_symbols'], |
'android_gyp_release_trybot': ['android', 'gyp', 'release_trybot'], |
'cast_gyp_release_bot': ['cast', 'gyp', 'release_bot'], |
'cast_gyp_release_trybot': ['cast', 'gyp', 'release_trybot'], |
@@ -58,6 +59,11 @@ |
# This is just for completeness; any bot that uses this config should never actually run MB. |
'none': ['none'], |
+ 'noswarming_gyp_release_bot': ['noswarming', 'gyp', 'release_bot'], |
+ 'noswarming_gyp_release_bot_linux_dump_symbols': ['noswarming', 'gyp', 'release_bot', 'linux_dump_symbols'], |
+ 'noswarming_gyp_release_bot_mac_strip': ['noswarming', 'gyp', 'release_bot', 'mac_strip'], |
+ 'noswarming_gyp_release_bot_x86_linux_dump_symbols': ['noswarming', 'gyp', 'release_bot', 'x86', 'linux_dump_symbols'], |
+ |
'swarming_asan_lsan_gyp_release_trybot': ['swarming', 'asan', 'lsan', 'release_trybot'], |
'swarming_msan_gyp_release_trybot': ['swarming', 'chromeos', 'msan', 'gyp', 'release_trybot'], |
'swarming_deterministic_gyp_release_bot': ['swarming', 'deterministic', 'gyp', 'release_bot'], |
@@ -236,11 +242,21 @@ |
'libfuzzer': { 'gn_args': 'use_libfuzzer=true' }, |
+ 'linux_dump_symbols': { |
+ 'gn_args': 'error', # TODO(GYP): Port linux_dump_symbols? |
+ 'gyp_defines': 'linux_dump_symbols=1', |
+ }, |
+ |
'lsan': { |
'gn_args': 'use_lsan=true', |
'gyp_defines': 'lsan=1', |
}, |
+ 'mac_strip': { |
+ 'gn_args': 'error', # TODO(GYP): Port mac_strip_release |
+ 'gyp_defines': 'mac_strip_release=1', |
+ }, |
+ |
'minimal_symbols': { |
'gn_args': 'symbol_level=1', |
'gyp_defines': 'fastbuild=1', |
@@ -265,6 +281,11 @@ |
'gyp_defines': 'target_arch=unknown', |
}, |
+ 'noswarming': { |
+ 'gn_args': '', |
+ 'gyp_defines': 'test_isolation_mode=noop', |
+ }, |
+ |
'official': { |
'gn_args': 'is_chrome_branded=true is_official_build=true is_debug=false', |
'gyp_defines': 'branding=Chrome buildtype=Official', |
@@ -328,6 +349,13 @@ |
'chrome': { |
'precise64': 'gyp_official', |
}, |
+ 'chromium': { |
+ 'Win': 'noswarming_gyp_release_bot', |
+ 'Mac': 'noswarming_gyp_release_bot_mac_strip', |
+ 'Linux x64': 'noswarming_gyp_release_bot_linux_dump_symbols', |
+ 'Linux': 'noswarming_gyp_release_bot_x86_linux_dump_symbols', |
+ 'Android': 'android_gyp_release_bot_minimal_symbols', |
+ }, |
'chromium.android': { |
'Android GN (dbg)': 'android_gn_debug_bot', |
'Android Aura GN (dbg)': 'android_aura_gn_debug_bot', |