| OLD | NEW |
| 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 1779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1790 'libfuzzer': { 'gn_args': 'use_libfuzzer=true' }, | 1790 'libfuzzer': { 'gn_args': 'use_libfuzzer=true' }, |
| 1791 | 1791 |
| 1792 'ubsan_security': { 'gn_args': 'is_ubsan_security=true' }, | 1792 'ubsan_security': { 'gn_args': 'is_ubsan_security=true' }, |
| 1793 | 1793 |
| 1794 'lsan': { | 1794 'lsan': { |
| 1795 'gn_args': 'is_lsan=true', | 1795 'gn_args': 'is_lsan=true', |
| 1796 'gyp_defines': 'lsan=1', | 1796 'gyp_defines': 'lsan=1', |
| 1797 }, | 1797 }, |
| 1798 | 1798 |
| 1799 'lto': { | 1799 'lto': { |
| 1800 'gn_args': 'is_lto=true', | 1800 'gn_args': 'allow_posix_link_time_opt=true', |
| 1801 'gyp_defines': 'use_lto=1', | 1801 'gyp_defines': 'use_lto=1', |
| 1802 }, | 1802 }, |
| 1803 | 1803 |
| 1804 'mac_strip': { | 1804 'mac_strip': { |
| 1805 'gn_args': 'error', # TODO(GYP): Port mac_strip_release | 1805 'gn_args': 'error', # TODO(GYP): Port mac_strip_release |
| 1806 'gyp_defines': 'mac_strip_release=1', | 1806 'gyp_defines': 'mac_strip_release=1', |
| 1807 }, | 1807 }, |
| 1808 | 1808 |
| 1809 'minimal_symbols': { | 1809 'minimal_symbols': { |
| 1810 'gn_args': 'symbol_level=1', | 1810 'gn_args': 'symbol_level=1', |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1923 'gn_args': 'is_component_build=true enable_iterator_debugging=false', | 1923 'gn_args': 'is_component_build=true enable_iterator_debugging=false', |
| 1924 'gyp_defines': 'component=shared_library build_for_tool=drmemory', | 1924 'gyp_defines': 'component=shared_library build_for_tool=drmemory', |
| 1925 }, | 1925 }, |
| 1926 | 1926 |
| 1927 'valgrind': { | 1927 'valgrind': { |
| 1928 # TODO: add gn_args for 'build_for_tool=memcheck' | 1928 # TODO: add gn_args for 'build_for_tool=memcheck' |
| 1929 'gyp_defines': 'build_for_tool=memcheck', | 1929 'gyp_defines': 'build_for_tool=memcheck', |
| 1930 } | 1930 } |
| 1931 }, | 1931 }, |
| 1932 } | 1932 } |
| OLD | NEW |