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

Side by Side Diff: tools/mb/mb_config.pyl

Issue 1832213002: [libfuzzer] separate libfuzzer ubsan configuration and ubsan build config setup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « build/config/sanitizers/sanitizers.gni ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 # This is a map of buildbot master names -> buildbot builder names -> 6 # This is a map of buildbot master names -> buildbot builder names ->
7 # config names (where each config name is a key in the 'configs' dict, 7 # config names (where each config name is a key in the 'configs' dict,
8 # below). MB uses this dict to look up which config to use for a given bot. 8 # below). MB uses this dict to look up which config to use for a given bot.
9 'masters': { 9 'masters': {
10 # Take care when changing any of these builders to ensure that you do not 10 # Take care when changing any of these builders to ensure that you do not
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 'CFI Linux CF': 'gn_cfi_diag_release_bot', 197 'CFI Linux CF': 'gn_cfi_diag_release_bot',
198 'CFI Linux ToT': 'gn_cfi_release_bot', 198 'CFI Linux ToT': 'gn_cfi_release_bot',
199 'CFI Linux': 'gn_cfi_release_bot', 199 'CFI Linux': 'gn_cfi_release_bot',
200 'LTO Linux Perf': 'gn_official_goma_lto', 200 'LTO Linux Perf': 'gn_official_goma_lto',
201 'Chromium_iOS_Device': 'ios_gyp', 201 'Chromium_iOS_Device': 'ios_gyp',
202 'Chromium_iOS_Device_(ninja)': 'ios_gyp', 202 'Chromium_iOS_Device_(ninja)': 'ios_gyp',
203 'Chromium_iOS_Simulator_(dbg)': 'ios_gyp', 203 'Chromium_iOS_Simulator_(dbg)': 'ios_gyp',
204 'CrWinClang64(dbg)': 'win_clang_debug_bot', 204 'CrWinClang64(dbg)': 'win_clang_debug_bot',
205 'Libfuzzer Upload Linux ASan': 'gn_release_libfuzzer_asan', 205 'Libfuzzer Upload Linux ASan': 'gn_release_libfuzzer_asan',
206 'Libfuzzer Upload Linux MSan': 'gn_release_libfuzzer_msan', 206 'Libfuzzer Upload Linux MSan': 'gn_release_libfuzzer_msan',
207 'Libfuzzer Upload Linux UBSan': 'gn_release_libfuzzer_ubsan',
207 'Linux ARM': 'swarming_gyp_release_bot_arm', 208 'Linux ARM': 'swarming_gyp_release_bot_arm',
208 'Site Isolation Linux': 'gn_release_trybot', 209 'Site Isolation Linux': 'gn_release_trybot',
209 'Site Isolation Win': 'gyp_release_trybot_x64', 210 'Site Isolation Win': 'gyp_release_trybot_x64',
210 'Win LKGR (DrM 64)': 'gn_release_drmemory_drfuzz', 211 'Win LKGR (DrM 64)': 'gn_release_drmemory_drfuzz',
211 'Win LKGR (DrM)': 'gn_release_drmemory_drfuzz_x86', 212 'Win LKGR (DrM)': 'gn_release_drmemory_drfuzz_x86',
212 }, 213 },
213 214
214 'chromium.gpu': { 215 'chromium.gpu': {
215 'Android Debug (Nexus 5)': 'tbd', 216 'Android Debug (Nexus 5)': 'tbd',
216 'Android Debug (Nexus 6)': 'tbd', 217 'Android Debug (Nexus 6)': 'tbd',
(...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after
1118 'gyp', 'release_trybot', 'x64', 1119 'gyp', 'release_trybot', 'x64',
1119 ], 1120 ],
1120 1121
1121 'gn_release_libfuzzer_asan': [ 1122 'gn_release_libfuzzer_asan': [
1122 'gn', 'release', 'libfuzzer', 'asan', 'proprietary_codecs', 'pdf_xfa', 1123 'gn', 'release', 'libfuzzer', 'asan', 'proprietary_codecs', 'pdf_xfa',
1123 ], 1124 ],
1124 1125
1125 'gn_release_libfuzzer_msan': [ 1126 'gn_release_libfuzzer_msan': [
1126 'gn', 'release', 'libfuzzer', 'msan', 'proprietary_codecs', 'pdf_xfa', 1127 'gn', 'release', 'libfuzzer', 'msan', 'proprietary_codecs', 'pdf_xfa',
1127 ], 1128 ],
1129 'gn_release_libfuzzer_ubsan': [
1130 'gn', 'release', 'libfuzzer', 'ubsan_security', 'proprietary_codecs',
1131 'pdf_xfa',
1132 ],
1128 1133
1129 'gn_release_drmemory_drfuzz_x86': [ 1134 'gn_release_drmemory_drfuzz_x86': [
1130 'gn', 'release', 'drmemory', 'drfuzz', 'x86', 'proprietary_codecs', 1135 'gn', 'release', 'drmemory', 'drfuzz', 'x86', 'proprietary_codecs',
1131 ], 1136 ],
1132 'gn_release_drmemory_drfuzz': [ 1137 'gn_release_drmemory_drfuzz': [
1133 'gn', 'release', 'drmemory', 'drfuzz', 'proprietary_codecs', 1138 'gn', 'release', 'drmemory', 'drfuzz', 'proprietary_codecs',
1134 ], 1139 ],
1135 1140
1136 'gyp_valgrind_release_bot': [ 1141 'gyp_valgrind_release_bot': [
1137 'gyp', 'valgrind', 'release_bot', 1142 'gyp', 'valgrind', 'release_bot',
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after
1620 1625
1621 'gyp': {'type': 'gyp'}, 1626 'gyp': {'type': 'gyp'},
1622 1627
1623 'internal_gles2_conform_tests': { 1628 'internal_gles2_conform_tests': {
1624 'gn_args': 'internal_gles2_conform_tests=true', 1629 'gn_args': 'internal_gles2_conform_tests=true',
1625 'gyp_defines': 'internal_gles2_conform_tests=1', 1630 'gyp_defines': 'internal_gles2_conform_tests=1',
1626 }, 1631 },
1627 1632
1628 'libfuzzer': { 'gn_args': 'use_libfuzzer=true' }, 1633 'libfuzzer': { 'gn_args': 'use_libfuzzer=true' },
1629 1634
1635 'ubsan_security': { 'gn_args': 'is_ubsan_security=true' },
1636
1630 'lsan': { 1637 'lsan': {
1631 'gn_args': 'is_lsan=true', 1638 'gn_args': 'is_lsan=true',
1632 'gyp_defines': 'lsan=1', 1639 'gyp_defines': 'lsan=1',
1633 }, 1640 },
1634 1641
1635 'lto': { 1642 'lto': {
1636 'gn_args': 'is_lto=true', 1643 'gn_args': 'is_lto=true',
1637 'gyp_defines': 'use_lto=1', 1644 'gyp_defines': 'use_lto=1',
1638 }, 1645 },
1639 1646
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
1759 'gn_args': 'is_component_build=true enable_iterator_debugging=false', 1766 'gn_args': 'is_component_build=true enable_iterator_debugging=false',
1760 'gyp_defines': 'component=shared_library build_for_tool=drmemory', 1767 'gyp_defines': 'component=shared_library build_for_tool=drmemory',
1761 }, 1768 },
1762 1769
1763 'valgrind': { 1770 'valgrind': {
1764 # TODO: add gn_args for 'build_for_tool=memcheck' 1771 # TODO: add gn_args for 'build_for_tool=memcheck'
1765 'gyp_defines': 'build_for_tool=memcheck', 1772 'gyp_defines': 'build_for_tool=memcheck',
1766 } 1773 }
1767 }, 1774 },
1768 } 1775 }
OLDNEW
« no previous file with comments | « build/config/sanitizers/sanitizers.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698