Chromium Code Reviews| Index: tools/mb/mb_config.pyl |
| diff --git a/tools/mb/mb_config.pyl b/tools/mb/mb_config.pyl |
| index 1e834fa816a5876c387951219f8b603a972cb71b..188911f99b76a1ce1852382cb5976ef34d7e5946 100644 |
| --- a/tools/mb/mb_config.pyl |
| +++ b/tools/mb/mb_config.pyl |
| @@ -93,12 +93,6 @@ |
| 'Chromium Linux32 Goma Canary (clobber)': 'tbd', |
| 'Chromium Win x64 Clobber': 'tbd', |
| 'ChromiumOS Linux Tests': 'tbd', |
| - 'ClangToTAndroidASan': |
| - 'android_clang_no_chrome_plugins_asan_gn_debug_bot_minimal_symbols', |
| - 'ClangToTLinux': 'tbd', |
| - 'ClangToTLinux (dbg)': 'tbd', |
| - 'ClangToTLinuxASan': 'tbd', |
| - 'ClangToTLinuxUBSanVptr': 'tbd', |
| 'ClangToTMac': 'tbd', |
| 'ClangToTMac (dbg)': 'tbd', |
| 'ClangToTMacASan': 'tbd', |
| @@ -162,9 +156,20 @@ |
| 'swarming_gyp_clang_official_release_bot_minimal_symbols_x64', |
| 'CrWinGoma': 'gyp_release_bot_minimal_symbols_x86', |
| 'CrWinGoma(dll)': 'gyp_shared_release_bot_minimal_symbols_x86', |
| + 'ClangToTAndroidASan': |
| + 'android_clang_no_chrome_plugins_asan_gn_debug_bot_minimal_symbols', |
| 'ClangToTAndroidASan tester': 'none', |
| + 'ClangToTLinux': |
| + ('swarming_gyp_clang_no_chrome_plugins_' |
| + 'linux_dump_symbols_shared_release'), |
| 'ClangToTLinux tester': 'none', |
| + 'ClangToTLinux (dbg)': |
| + 'swarming_gyp_clang_no_chrome_plugins_shared_debug', |
| + 'ClangToTLinuxASan': |
| + 'swarming_gyp_clang_no_chrome_plugins_asan_lsan_static_release', |
| 'ClangToTLinuxASan tester': 'none', |
| + 'ClangToTLinuxUBSanVptr': |
| + 'swarming_gyp_clang_no_chrome_plugins_edge_ubsan_hack_static_release', |
| 'ClangToTLinuxUBSanVptr tester': 'none', |
| 'ClangToTMac tester': 'none', |
| 'ClangToTMacASan tester': 'none', |
| @@ -1537,6 +1542,27 @@ |
| 'chromeos_with_codecs', 'goma', 'gyp', 'ozone', 'static', 'swarming', |
| ], |
| + 'swarming_gyp_clang_no_chrome_plugins_edge_ubsan_hack_static_release': [ |
| + 'swarming', 'gyp', 'clang_no_chrome_plugins', 'edge', 'ubsan_hack', |
| + 'static', 'release', |
| + ], |
| + |
| + 'swarming_gyp_clang_no_chrome_plugins_asan_lsan_static_release': [ |
| + 'swarming', 'gyp', 'clang_no_chrome_plugins', 'asan', 'lsan', 'static', |
| + 'release', |
| + ], |
| + |
| + 'swarming_gyp_clang_no_chrome_plugins_shared_debug': [ |
| + 'swarming', 'gyp', 'clang_no_chrome_plugins', 'shared', 'debug', |
| + ], |
| + |
| + 'swarming_gyp_clang_no_chrome_plugins_linux_dump_symbols_shared_release': [ |
| + # Enable debug info, as on official builders, to catch issues with |
| + # optimized debug info. |
| + 'swarming', 'gyp', 'clang_no_chrome_plugins', 'linux_dump_symbols', |
| + 'shared', 'release', |
| + ], |
| + |
| 'swarming_gyp_debug_trybot': [ |
| 'swarming', 'gyp', 'debug_trybot', |
| ], |
| @@ -2092,6 +2118,11 @@ |
| 'gyp_defines': 'debug_extra_cflags="-gline-tables-only"', |
| }, |
| + 'linux_dump_symbols': { |
| + 'gn_args': 'error', # TODO(aneeshm): what is the GN equivalent of this? |
| + 'gyp_defines': 'linux_dump_symbols=1', |
| + }, |
| + |
| 'ubsan_security': { 'gn_args': 'is_ubsan_security=true' }, |
| 'lsan': { |
| @@ -2231,6 +2262,14 @@ |
| 'gyp_defines': 'ubsan=1', |
| }, |
| + 'ubsan_hack': { |
|
krasin
2016/04/22 01:09:14
Please, rename it to "ubsan_no_recover_hack" to ma
Dirk Pranke
2016/04/22 01:14:24
Unfortunately, that'd push the config name on line
|
| + # TODO(krasin): Remove when https://llvm.org/bugs/show_bug.cgi?id=25569 |
| + # is fixed and just use ubsan_vptr instead. |
| + 'mixins': ['ubsan_vptr'], |
| + 'gn_args': 'error', # TODO(GYP): need a GN equivalent for this |
| + 'gyp_defines': 'release_extra_cflags=-fno-sanitize-recover=undefined', |
| + }, |
| + |
| 'ubsan_vptr': { |
| 'gn_args': 'is_ubsan_vptr=true', |
| 'gyp_defines': 'ubsan_vptr=1', |