| 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': { |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 'V8 Linux - s390x - sim': 'gyp_release_simulate_s390x', | 110 'V8 Linux - s390x - sim': 'gyp_release_simulate_s390x', |
| 111 # X87. | 111 # X87. |
| 112 'V8 Linux - x87 - nosnap - debug builder': | 112 'V8 Linux - x87 - nosnap - debug builder': |
| 113 'gyp_debug_simulate_x87_no_snap', | 113 'gyp_debug_simulate_x87_no_snap', |
| 114 }, | 114 }, |
| 115 'client.v8.branches': { | 115 'client.v8.branches': { |
| 116 'V8 Linux - beta branch': 'gn_release_x86', | 116 'V8 Linux - beta branch': 'gn_release_x86', |
| 117 'V8 Linux - beta branch - debug': 'gn_debug_x86', | 117 'V8 Linux - beta branch - debug': 'gn_debug_x86', |
| 118 'V8 Linux - stable branch': 'gn_release_x86', | 118 'V8 Linux - stable branch': 'gn_release_x86', |
| 119 'V8 Linux - stable branch - debug': 'gn_debug_x86', | 119 'V8 Linux - stable branch - debug': 'gn_debug_x86', |
| 120 'V8 Linux64 - beta branch': 'gyp_release_x64', | 120 'V8 Linux64 - beta branch': 'gn_release_x64', |
| 121 'V8 Linux64 - beta branch - debug': 'gn_debug_x64', | 121 'V8 Linux64 - beta branch - debug': 'gn_debug_x64', |
| 122 'V8 Linux64 - stable branch': 'gn_release_x64', | 122 'V8 Linux64 - stable branch': 'gn_release_x64', |
| 123 'V8 Linux64 - stable branch - debug': 'gn_debug_x64', | 123 'V8 Linux64 - stable branch - debug': 'gn_debug_x64', |
| 124 'V8 arm - sim - beta branch': 'gyp_release_simulate_arm', | 124 'V8 arm - sim - beta branch': 'gyp_release_simulate_arm', |
| 125 'V8 arm - sim - beta branch - debug': 'gyp_debug_simulate_arm', | 125 'V8 arm - sim - beta branch - debug': 'gyp_debug_simulate_arm', |
| 126 'V8 arm - sim - stable branch': 'gyp_release_simulate_arm', | 126 'V8 arm - sim - stable branch': 'gyp_release_simulate_arm', |
| 127 'V8 arm - sim - stable branch - debug': 'gyp_debug_simulate_arm', | 127 'V8 arm - sim - stable branch - debug': 'gyp_debug_simulate_arm', |
| 128 'V8 mips64el - sim - beta branch': 'gyp_release_simulate_mips64el', | 128 'V8 mips64el - sim - beta branch': 'gyp_release_simulate_mips64el', |
| 129 'V8 mips64el - sim - stable branch': 'gyp_release_simulate_mips64el', | 129 'V8 mips64el - sim - stable branch': 'gyp_release_simulate_mips64el', |
| 130 'V8 mipsel - sim - beta branch': 'gyp_release_simulate_mipsel', | 130 'V8 mipsel - sim - beta branch': 'gyp_release_simulate_mipsel', |
| (...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 661 'gn_args': 'target_cpu="x64"', | 661 'gn_args': 'target_cpu="x64"', |
| 662 'gyp_defines': 'target_arch=x64', | 662 'gyp_defines': 'target_arch=x64', |
| 663 }, | 663 }, |
| 664 | 664 |
| 665 'x86': { | 665 'x86': { |
| 666 'gn_args': 'target_cpu="x86"', | 666 'gn_args': 'target_cpu="x86"', |
| 667 'gyp_defines': 'target_arch=ia32', | 667 'gyp_defines': 'target_arch=ia32', |
| 668 }, | 668 }, |
| 669 }, | 669 }, |
| 670 } | 670 } |
| OLD | NEW |