| 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 |
| 11 # include a configuration with 'chrome_with_codecs' since these builders | 11 # include a configuration with 'chrome_with_codecs' since these builders |
| 12 # generated publicly advertised non-Official builds which are not allowed | 12 # generated publicly advertised non-Official builds which are not allowed |
| 13 # to have proprietary codecs enabled. | 13 # to have proprietary codecs enabled. |
| 14 'chromeos.chrome': { |
| 15 'Chrome4CROS Packages': 'swarming_chromeos_gn_release_bot', |
| 16 'Linux ChromeOS Buildspec Tests': 'swarming_chromeos_gn_release_bot', |
| 17 }, |
| 18 |
| 14 'chromium': { | 19 'chromium': { |
| 15 'Android': 'android_without_codecs_gn_release_bot_minimal_symbols', | 20 'Android': 'android_without_codecs_gn_release_bot_minimal_symbols', |
| 16 'Linux x64': 'noswarming_gn_release_bot', | 21 'Linux x64': 'noswarming_gn_release_bot', |
| 17 'Mac': 'noswarming_gyp_release_bot_mac_strip', | 22 'Mac': 'noswarming_gyp_release_bot_mac_strip', |
| 18 'Win': 'noswarming_gyp_release_bot_minimal_symbols_x86', | 23 'Win': 'noswarming_gyp_release_bot_minimal_symbols_x86', |
| 19 'Win x64': 'noswarming_gn_release_bot_minimal_symbols_x64', | 24 'Win x64': 'noswarming_gn_release_bot_minimal_symbols_x64', |
| 20 }, | 25 }, |
| 21 | 26 |
| 22 'chromium.android': { | 27 'chromium.android': { |
| 23 'Android Cronet ARM64 Builder': | 28 'Android Cronet ARM64 Builder': |
| (...skipping 2333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2357 }, | 2362 }, |
| 2358 | 2363 |
| 2359 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, | 2364 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, |
| 2360 | 2365 |
| 2361 'drmemory': { | 2366 'drmemory': { |
| 2362 'gn_args': 'is_component_build=true enable_iterator_debugging=false', | 2367 'gn_args': 'is_component_build=true enable_iterator_debugging=false', |
| 2363 'gyp_defines': 'component=shared_library build_for_tool=drmemory', | 2368 'gyp_defines': 'component=shared_library build_for_tool=drmemory', |
| 2364 }, | 2369 }, |
| 2365 }, | 2370 }, |
| 2366 } | 2371 } |
| OLD | NEW |