| OLD | NEW |
| 1 # Copyright 2016 The V8 project authors. All rights reserved. | 1 # Copyright 2016 The V8 project 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 'client.v8': { | 10 'client.v8': { |
| 11 'V8 Linux - swarming staging': 'gn_swarming_release', | 11 'V8 Linux - swarming staging': 'gyp_swarming_release', |
| 12 }, | 12 }, |
| 13 }, | 13 }, |
| 14 | 14 |
| 15 'configs': { | 15 'configs': { |
| 16 'gyp_swarming_release': [ | 16 'gyp_swarming_release': [ |
| 17 'release_bot', 'swarming_bot', 'gyp'], | 17 'release_bot', 'swarming_bot', 'gyp'], |
| 18 'gn_swarming_release': [ | 18 'gn_swarming_release': [ |
| 19 'release_bot', 'swarming_bot', 'gn'], | 19 'release_bot', 'swarming_bot', 'gn'], |
| 20 }, | 20 }, |
| 21 | 21 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 'swarming': { | 70 'swarming': { |
| 71 'gn_args': 'v8_test_isolation_mode="prepare"', | 71 'gn_args': 'v8_test_isolation_mode="prepare"', |
| 72 'gyp_defines': 'test_isolation_mode=prepare', | 72 'gyp_defines': 'test_isolation_mode=prepare', |
| 73 }, | 73 }, |
| 74 | 74 |
| 75 'swarming_bot': { | 75 'swarming_bot': { |
| 76 'mixins': ['swarming', 'no_sysroot', 'no_icu_data_file'], | 76 'mixins': ['swarming', 'no_sysroot', 'no_icu_data_file'], |
| 77 }, | 77 }, |
| 78 }, | 78 }, |
| 79 } | 79 } |
| OLD | NEW |