| 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 # Bots are ordered by appearance on waterfall. | 9 # Bots are ordered by appearance on waterfall. |
| 10 'masters': { | 10 'masters': { |
| 11 'developer_default': { | 11 'developer_default': { |
| 12 'arm.debug': 'default_debug_arm', | 12 'arm.debug': 'default_debug_arm', |
| 13 'arm.optdebug': 'default_optdebug_arm', | 13 'arm.optdebug': 'default_optdebug_arm', |
| 14 'arm.release': 'default_release_arm', | 14 'arm.release': 'default_release_arm', |
| 15 'arm64.debug': 'default_debug_arm64', | 15 'arm64.debug': 'default_debug_arm64', |
| 16 'arm64.optdebug': 'default_optdebug_arm64', | 16 'arm64.optdebug': 'default_optdebug_arm64', |
| 17 'arm64.release': 'default_release_arm64', | 17 'arm64.release': 'default_release_arm64', |
| 18 'ia32.debug': 'default_debug_x86', |
| 19 'ia32.optdebug': 'default_optdebug_x86', |
| 20 'ia32.release': 'default_release_x86', |
| 18 'x64.debug': 'default_debug_x64', | 21 'x64.debug': 'default_debug_x64', |
| 19 'x64.optdebug': 'default_optdebug_x64', | 22 'x64.optdebug': 'default_optdebug_x64', |
| 20 'x64.release': 'default_release_x64', | 23 'x64.release': 'default_release_x64', |
| 21 'x86.debug': 'default_debug_x86', | |
| 22 'x86.optdebug': 'default_optdebug_x86', | |
| 23 'x86.release': 'default_release_x86', | |
| 24 }, | 24 }, |
| 25 | 25 |
| 26 'client.dart.fyi': { | 26 'client.dart.fyi': { |
| 27 'v8-linux-release': 'gyp_release_x86_disassembler', | 27 'v8-linux-release': 'gyp_release_x86_disassembler', |
| 28 'v8-win-release': 'gyp_release_x86_disassembler', | 28 'v8-win-release': 'gyp_release_x86_disassembler', |
| 29 'v8-mac-release': 'gyp_release_x86_disassembler', | 29 'v8-mac-release': 'gyp_release_x86_disassembler', |
| 30 }, | 30 }, |
| 31 'client.dynamorio': { | 31 'client.dynamorio': { |
| 32 'linux-v8-dr': 'gyp_release_x64', | 32 'linux-v8-dr': 'gyp_release_x64', |
| 33 }, | 33 }, |
| (...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 'gn_args': 'target_cpu="x64"', | 681 'gn_args': 'target_cpu="x64"', |
| 682 'gyp_defines': 'target_arch=x64', | 682 'gyp_defines': 'target_arch=x64', |
| 683 }, | 683 }, |
| 684 | 684 |
| 685 'x86': { | 685 'x86': { |
| 686 'gn_args': 'target_cpu="x86"', | 686 'gn_args': 'target_cpu="x86"', |
| 687 'gyp_defines': 'target_arch=ia32', | 687 'gyp_defines': 'target_arch=ia32', |
| 688 }, | 688 }, |
| 689 }, | 689 }, |
| 690 } | 690 } |
| OLD | NEW |