| 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 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 'Win7 (32) Tests': 'none', | 608 'Win7 (32) Tests': 'none', |
| 609 'Win7 Tests (1)': 'none', | 609 'Win7 Tests (1)': 'none', |
| 610 'Win7 Tests (dbg)(1)': 'none', | 610 'Win7 Tests (dbg)(1)': 'none', |
| 611 'Win8 GYP': 'swarming_gyp_release_bot_minimal_symbols_x86', | 611 'Win8 GYP': 'swarming_gyp_release_bot_minimal_symbols_x86', |
| 612 'Win8 GYP (dbg)': 'swarming_gyp_debug_bot_minimal_symbols_x86', | 612 'Win8 GYP (dbg)': 'swarming_gyp_debug_bot_minimal_symbols_x86', |
| 613 'WinClang64 (dbg)': 'win_clang_debug_bot', | 613 'WinClang64 (dbg)': 'win_clang_debug_bot', |
| 614 }, | 614 }, |
| 615 | 615 |
| 616 'official.desktop': { | 616 'official.desktop': { |
| 617 'blimp-engine': '//build/args/bots/official.desktop/blimp-engine.gn', | 617 'blimp-engine': '//build/args/bots/official.desktop/blimp-engine.gn', |
| 618 'mac64': 'gn_official', | 618 'mac64': 'gyp_official', |
| 619 'precise64': 'gn_official', | 619 'precise64': 'gn_official', |
| 620 | 620 |
| 621 # Currently the official bots set mini_installer_official_deps=1 | 621 # Currently the official bots set mini_installer_official_deps=1 |
| 622 # but it's not clear if that's actually used anywhere. | 622 # but it's not clear if that's actually used anywhere. |
| 623 'win': 'gyp_official', | 623 'win': 'gyp_official', |
| 624 'win-asan': 'gyp_official_syzyasan', | 624 'win-asan': 'gyp_official_syzyasan', |
| 625 'win-pgo': 'gyp_official_winpgo', | 625 'win-pgo': 'gyp_official_winpgo', |
| 626 'win64': 'gyp_official_x64', | 626 'win64': 'gyp_official_x64', |
| 627 'win64-pgo': 'gyp_official_winpgo_x64', | 627 'win64-pgo': 'gyp_official_winpgo_x64', |
| 628 }, | 628 }, |
| 629 | 629 |
| 630 'official.desktop.continuous': { | 630 'official.desktop.continuous': { |
| 631 'mac beta': 'gyp_official', | 631 'mac beta': 'gyp_official', |
| 632 'mac stable': 'gyp_official', | 632 'mac stable': 'gyp_official', |
| 633 'mac trunk': 'gn_official', | 633 'mac trunk': 'gyp_official', |
| 634 'precise64 beta': 'gn_official', | 634 'precise64 beta': 'gn_official', |
| 635 'precise64 stable': 'gn_official', | 635 'precise64 stable': 'gn_official', |
| 636 'precise64 trunk': 'gn_official', | 636 'precise64 trunk': 'gn_official', |
| 637 'win beta': 'gyp_official_six_concurrent_links', | 637 'win beta': 'gyp_official_six_concurrent_links', |
| 638 'win stable': 'gyp_official_six_concurrent_links', | 638 'win stable': 'gyp_official_six_concurrent_links', |
| 639 'win trunk': 'gyp_official_six_concurrent_links', | 639 'win trunk': 'gyp_official_six_concurrent_links', |
| 640 'win64 trunk': 'gyp_official_x64_six_concurrent_links', | 640 'win64 trunk': 'gyp_official_x64_six_concurrent_links', |
| 641 }, | 641 }, |
| 642 | 642 |
| 643 'tryserver.blink': { | 643 'tryserver.blink': { |
| (...skipping 1660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2304 }, | 2304 }, |
| 2305 | 2305 |
| 2306 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, | 2306 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, |
| 2307 | 2307 |
| 2308 'drmemory': { | 2308 'drmemory': { |
| 2309 'gn_args': 'is_component_build=true enable_iterator_debugging=false', | 2309 'gn_args': 'is_component_build=true enable_iterator_debugging=false', |
| 2310 'gyp_defines': 'component=shared_library build_for_tool=drmemory', | 2310 'gyp_defines': 'component=shared_library build_for_tool=drmemory', |
| 2311 }, | 2311 }, |
| 2312 }, | 2312 }, |
| 2313 } | 2313 } |
| OLD | NEW |