| 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 'chromeos.chrome': { | 10 'chromeos.chrome': { |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 'chromium.memory.full': { | 306 'chromium.memory.full': { |
| 307 'Chromium Linux ChromeOS MSan Builder': 'chromeos_msan_release_bot', | 307 'Chromium Linux ChromeOS MSan Builder': 'chromeos_msan_release_bot', |
| 308 'Chromium Linux MSan Builder': 'msan_release_bot', | 308 'Chromium Linux MSan Builder': 'msan_release_bot', |
| 309 'Chromium Linux TSan Builder': 'tsan_disable_nacl_release_bot', | 309 'Chromium Linux TSan Builder': 'tsan_disable_nacl_release_bot', |
| 310 'Chromium Windows Builder (DrMemory x64)': 'drmemory_shared_release', | 310 'Chromium Windows Builder (DrMemory x64)': 'drmemory_shared_release', |
| 311 'Chromium Windows Builder (DrMemory)': 'drmemory_shared_release_x86', | 311 'Chromium Windows Builder (DrMemory)': 'drmemory_shared_release_x86', |
| 312 }, | 312 }, |
| 313 | 313 |
| 314 'chromium.perf': { | 314 'chromium.perf': { |
| 315 'Android Builder': 'official_goma_minimal_symbols_android', | 315 'Android Builder': 'official_goma_minimal_symbols_android', |
| 316 'Android Compile': 'official_goma_minimal_symbols_android', |
| 316 'Android arm64 Builder': 'official_goma_minimal_symbols_android_arm64', | 317 'Android arm64 Builder': 'official_goma_minimal_symbols_android_arm64', |
| 317 'Linux Builder': 'official_goma', | 318 'Linux Builder': 'official_goma', |
| 318 'Mac Builder': 'official_goma', | 319 'Mac Builder': 'official_goma', |
| 319 'Win Builder': 'official_goma_x86', | 320 'Win Builder': 'official_goma_x86', |
| 320 'Win x64 Builder': 'official_goma', | 321 'Win x64 Builder': 'official_goma', |
| 321 }, | 322 }, |
| 322 | 323 |
| 323 'chromium.perf.fyi': { | 324 'chromium.perf.fyi': { |
| 324 'Android Builder FYI': 'official_goma_minimal_symbols_android', | 325 'Android Builder FYI': 'official_goma_minimal_symbols_android', |
| 325 'Win Builder FYI': 'official_goma', | 326 'Win Builder FYI': 'official_goma', |
| (...skipping 1495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1821 'gn_args': 'target_cpu="x86"', | 1822 'gn_args': 'target_cpu="x86"', |
| 1822 }, | 1823 }, |
| 1823 | 1824 |
| 1824 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, | 1825 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, |
| 1825 | 1826 |
| 1826 'drmemory': { | 1827 'drmemory': { |
| 1827 'gn_args': 'is_component_build=true enable_iterator_debugging=false', | 1828 'gn_args': 'is_component_build=true enable_iterator_debugging=false', |
| 1828 }, | 1829 }, |
| 1829 }, | 1830 }, |
| 1830 } | 1831 } |
| OLD | NEW |