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

Unified Diff: tools/mb/mb_config.pyl

Issue 1417963008: Add MB entries for the bots on the chromium waterfall. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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: 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',
« 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