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

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

Issue 1834223003: [libfuzzer] disable nacl in all libfuzzer builds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « no previous file | 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 1101 matching lines...) Expand 10 before | Expand all | Expand 10 after
1112 'gyp_release_trybot': [ 1112 'gyp_release_trybot': [
1113 'gyp', 'release_trybot', 1113 'gyp', 'release_trybot',
1114 ], 1114 ],
1115 1115
1116 'gyp_release_trybot_x64': [ 1116 'gyp_release_trybot_x64': [
1117 'gyp', 'release_trybot', 'x64', 1117 'gyp', 'release_trybot', 'x64',
1118 ], 1118 ],
1119 1119
1120 'gn_release_libfuzzer_asan': [ 1120 'gn_release_libfuzzer_asan': [
1121 'gn', 'release', 'libfuzzer', 'asan', 'proprietary_codecs', 'pdf_xfa', 1121 'gn', 'release', 'libfuzzer', 'asan', 'proprietary_codecs', 'pdf_xfa',
1122 'disable_nacl',
1122 ], 1123 ],
1123 1124
1124 'gn_release_libfuzzer_msan': [ 1125 'gn_release_libfuzzer_msan': [
1125 'gn', 'release', 'libfuzzer', 'msan', 'proprietary_codecs', 'pdf_xfa', 1126 'gn', 'release', 'libfuzzer', 'msan', 'proprietary_codecs', 'pdf_xfa',
1127 'disable_nacl',
1126 ], 1128 ],
1127 'gn_release_libfuzzer_ubsan': [ 1129 'gn_release_libfuzzer_ubsan': [
1128 'gn', 'release', 'libfuzzer', 'ubsan_security', 'proprietary_codecs', 1130 'gn', 'release', 'libfuzzer', 'ubsan_security', 'proprietary_codecs',
1129 'pdf_xfa', 1131 'pdf_xfa', 'disable_nacl',
1130 ], 1132 ],
1131 1133
1132 'gn_release_drmemory_drfuzz_x86': [ 1134 'gn_release_drmemory_drfuzz_x86': [
1133 'gn', 'release', 'drmemory', 'drfuzz', 'x86', 'proprietary_codecs', 1135 'gn', 'release', 'drmemory', 'drfuzz', 'x86', 'proprietary_codecs',
1134 ], 1136 ],
1135 'gn_release_drmemory_drfuzz': [ 1137 'gn_release_drmemory_drfuzz': [
1136 'gn', 'release', 'drmemory', 'drfuzz', 'proprietary_codecs', 1138 'gn', 'release', 'drmemory', 'drfuzz', 'proprietary_codecs',
1137 ], 1139 ],
1138 1140
1139 'gyp_valgrind_release_bot': [ 1141 'gyp_valgrind_release_bot': [
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after
1764 'gn_args': 'is_component_build=true enable_iterator_debugging=false', 1766 'gn_args': 'is_component_build=true enable_iterator_debugging=false',
1765 'gyp_defines': 'component=shared_library build_for_tool=drmemory', 1767 'gyp_defines': 'component=shared_library build_for_tool=drmemory',
1766 }, 1768 },
1767 1769
1768 'valgrind': { 1770 'valgrind': {
1769 # TODO: add gn_args for 'build_for_tool=memcheck' 1771 # TODO: add gn_args for 'build_for_tool=memcheck'
1770 'gyp_defines': 'build_for_tool=memcheck', 1772 'gyp_defines': 'build_for_tool=memcheck',
1771 } 1773 }
1772 }, 1774 },
1773 } 1775 }
OLDNEW
« 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