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 1185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1196 | 1196 |
1197 'gn_release_trybot': [ | 1197 'gn_release_trybot': [ |
1198 'gn', 'release_trybot', | 1198 'gn', 'release_trybot', |
1199 ], | 1199 ], |
1200 | 1200 |
1201 'gn_release_trybot_x64': [ | 1201 'gn_release_trybot_x64': [ |
1202 'gn', 'release_trybot', 'x64', | 1202 'gn', 'release_trybot', 'x64', |
1203 ], | 1203 ], |
1204 | 1204 |
1205 'gn_windows_analyze': [ | 1205 'gn_windows_analyze': [ |
1206 'gn', 'no_symbols', 'disable_precompiled_headers', | 1206 'gn', 'no_symbols', 'no_pch', 'shared', 'x86', 'win_analyze', |
1207 'shared', 'x86', 'win_analyze', | |
1208 ], | 1207 ], |
1209 | 1208 |
1210 'gn_ubsan_vptr_release_bot': [ | 1209 'gn_ubsan_vptr_release_bot': [ |
1211 'gn', 'ubsan_vptr', 'ubsan_no_recover_hack', 'release_bot', | 1210 'gn', 'ubsan_vptr', 'ubsan_no_recover_hack', 'release_bot', |
1212 ], | 1211 ], |
1213 | 1212 |
1214 'gyp_asan_edge_fuzzer_v8_heap_chromeos_codecs_release_bot_hybrid': [ | 1213 'gyp_asan_edge_fuzzer_v8_heap_chromeos_codecs_release_bot_hybrid': [ |
1215 'gyp', 'asan', 'edge', 'fuzzer', 'v8_heap', 'chromeos_codecs', | 1214 'gyp', 'asan', 'edge', 'fuzzer', 'v8_heap', 'chromeos_codecs', |
1216 'release_bot', 'hybrid', | 1215 'release_bot', 'hybrid', |
1217 ], | 1216 ], |
(...skipping 800 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2018 | 2017 |
2019 'debug_trybot': { | 2018 'debug_trybot': { |
2020 'mixins': ['debug_bot_minimal_symbols'], | 2019 'mixins': ['debug_bot_minimal_symbols'], |
2021 }, | 2020 }, |
2022 | 2021 |
2023 'disable_nacl': { | 2022 'disable_nacl': { |
2024 'gn_args': 'enable_nacl=false', | 2023 'gn_args': 'enable_nacl=false', |
2025 'gyp_defines': 'disable_nacl=1', | 2024 'gyp_defines': 'disable_nacl=1', |
2026 }, | 2025 }, |
2027 | 2026 |
2028 'disable_precompiled_headers': { | |
2029 'gn_args': 'disable_precompiled_headers=true', | |
2030 'gyp_defines': 'chromium_win_pch=0', | |
2031 }, | |
2032 | |
2033 'edge': { | 2027 'edge': { |
2034 'gn_args': 'sanitizer_coverage_flags="edge"', | 2028 'gn_args': 'sanitizer_coverage_flags="edge"', |
2035 'gyp_defines': 'sanitizer_coverage=edge', | 2029 'gyp_defines': 'sanitizer_coverage=edge', |
2036 }, | 2030 }, |
2037 | 2031 |
2038 # This mixin is used to force configs that use it to fail. It | 2032 # This mixin is used to force configs that use it to fail. It |
2039 # is used in two cases: when we have bots that we haven't looked | 2033 # is used in two cases: when we have bots that we haven't looked |
2040 # at yet and don't know whether they need MB or not, and for bots | 2034 # at yet and don't know whether they need MB or not, and for bots |
2041 # that are test-only and should never run MB. | 2035 # that are test-only and should never run MB. |
2042 'error': { | 2036 'error': { |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2302 }, | 2296 }, |
2303 | 2297 |
2304 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, | 2298 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, |
2305 | 2299 |
2306 'drmemory': { | 2300 'drmemory': { |
2307 'gn_args': 'is_component_build=true enable_iterator_debugging=false', | 2301 'gn_args': 'is_component_build=true enable_iterator_debugging=false', |
2308 'gyp_defines': 'component=shared_library build_for_tool=drmemory', | 2302 'gyp_defines': 'component=shared_library build_for_tool=drmemory', |
2309 }, | 2303 }, |
2310 }, | 2304 }, |
2311 } | 2305 } |
OLD | NEW |