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

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

Issue 2393993002: [mb] Use optimize_for_fuzzing for libfuzzer bots. (Closed)
Patch Set: Created 4 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 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 'chromeos.chrome': { 10 'chromeos.chrome': {
(...skipping 1312 matching lines...) Expand 10 before | Expand all | Expand 10 after
1323 1323
1324 'release_drmemory_drfuzz': [ 1324 'release_drmemory_drfuzz': [
1325 'release', 'drmemory', 'drfuzz', 'chrome_with_codecs', 1325 'release', 'drmemory', 'drfuzz', 'chrome_with_codecs',
1326 ], 1326 ],
1327 1327
1328 'release_drmemory_drfuzz_x86': [ 1328 'release_drmemory_drfuzz_x86': [
1329 'release', 'drmemory', 'drfuzz', 'x86', 'chrome_with_codecs', 1329 'release', 'drmemory', 'drfuzz', 'x86', 'chrome_with_codecs',
1330 ], 1330 ],
1331 1331
1332 'release_libfuzzer_asan': [ 1332 'release_libfuzzer_asan': [
1333 'release', 'libfuzzer', 'asan', 'chromeos_codecs', 'pdf_xfa', 'disable_nac l', 1333 'release', 'libfuzzer', 'asan', 'chromeos_codecs', 'pdf_xfa', 'disable_nac l', 'optimize_for_fuzzing',
1334 ], 1334 ],
1335 1335
1336 'release_libfuzzer_asan_clang_tot': [ 1336 'release_libfuzzer_asan_clang_tot': [
1337 'clang_tot', 'release', 'libfuzzer', 'asan', 'chromeos_codecs', 'pdf_xfa', 'disable_nacl', 1337 'clang_tot', 'release', 'libfuzzer', 'asan', 'chromeos_codecs', 'pdf_xfa', 'disable_nacl',
1338 ], 1338 ],
1339 1339
1340 'release_libfuzzer_mac_asan': [ 1340 'release_libfuzzer_mac_asan': [
1341 'release', 'libfuzzer', 'asan', 'chrome_with_codecs', 'pdf_xfa', 'disable_ nacl', 1341 'release', 'libfuzzer', 'asan', 'chrome_with_codecs', 'pdf_xfa', 'disable_ nacl', 'optimize_for_fuzzing',
1342 ], 1342 ],
1343 1343
1344 'release_libfuzzer_msan': [ 1344 'release_libfuzzer_msan': [
1345 'release', 'libfuzzer', 'msan', 'chromeos_codecs', 'pdf_xfa', 'disable_nac l', 1345 'release', 'libfuzzer', 'msan', 'chromeos_codecs', 'pdf_xfa', 'disable_nac l', 'optimize_for_fuzzing',
1346 ], 1346 ],
1347 1347
1348 'release_libfuzzer_ubsan': [ 1348 'release_libfuzzer_ubsan': [
1349 'release', 'libfuzzer', 'ubsan_security', 'chromeos_codecs', 'pdf_xfa', 'd isable_nacl', 1349 'release', 'libfuzzer', 'ubsan_security', 'chromeos_codecs', 'pdf_xfa', 'd isable_nacl', 'optimize_for_fuzzing',
1350 ], 1350 ],
1351 1351
1352 'release_trybot': [ 1352 'release_trybot': [
1353 'release_trybot', 1353 'release_trybot',
1354 ], 1354 ],
1355 1355
1356 'release_trybot_arm': [ 1356 'release_trybot_arm': [
1357 'release_trybot', 'arm', 1357 'release_trybot', 'arm',
1358 ], 1358 ],
1359 1359
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
1670 1670
1671 'official': { 1671 'official': {
1672 'mixins': ['official_optimize'], 1672 'mixins': ['official_optimize'],
1673 'gn_args': 'is_chrome_branded=true', 1673 'gn_args': 'is_chrome_branded=true',
1674 }, 1674 },
1675 1675
1676 'official_optimize': { 1676 'official_optimize': {
1677 'gn_args': 'is_official_build=true is_debug=false', 1677 'gn_args': 'is_official_build=true is_debug=false',
1678 }, 1678 },
1679 1679
1680 'optimize_for_fuzzing': {
1681 'gn_args': 'optimize_for_fuzzing=true',
1682 },
1683
1680 'ozone': { 1684 'ozone': {
1681 'gn_args': 'use_ozone=true', 1685 'gn_args': 'use_ozone=true',
1682 }, 1686 },
1683 1687
1684 'pdf_xfa': { 1688 'pdf_xfa': {
1685 'gn_args': 'pdf_enable_xfa=true', 1689 'gn_args': 'pdf_enable_xfa=true',
1686 }, 1690 },
1687 1691
1688 # Note: This is probably not what you want to use. Instead use one of the 1692 # Note: This is probably not what you want to use. Instead use one of the
1689 # chrome_with_codecs or chromeos_with_codecs mixins. 1693 # chrome_with_codecs or chromeos_with_codecs mixins.
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
1775 'gn_args': 'target_cpu="x86"', 1779 'gn_args': 'target_cpu="x86"',
1776 }, 1780 },
1777 1781
1778 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, 1782 'drfuzz': { 'gn_args': 'use_drfuzz=true' },
1779 1783
1780 'drmemory': { 1784 'drmemory': {
1781 'gn_args': 'is_component_build=true enable_iterator_debugging=false', 1785 'gn_args': 'is_component_build=true enable_iterator_debugging=false',
1782 }, 1786 },
1783 }, 1787 },
1784 } 1788 }
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