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': { |
| 12 'x64.debug': 'default_debug_x64', |
| 13 'x64.optdebug': 'default_optdebug_x64', |
| 14 'x64.release': 'default_release_x64', |
| 15 'x86.debug': 'default_debug_x86', |
| 16 'x86.optdebug': 'default_optdebug_x86', |
| 17 'x86.release': 'default_release_x86', |
| 18 }, |
| 19 |
11 'client.dart.fyi': { | 20 'client.dart.fyi': { |
12 'v8-linux-release': 'gyp_release_x86_disassembler', | 21 'v8-linux-release': 'gyp_release_x86_disassembler', |
13 'v8-win-release': 'gyp_release_x86_disassembler', | 22 'v8-win-release': 'gyp_release_x86_disassembler', |
14 'v8-mac-release': 'gyp_release_x86_disassembler', | 23 'v8-mac-release': 'gyp_release_x86_disassembler', |
15 }, | 24 }, |
16 'client.dynamorio': { | 25 'client.dynamorio': { |
17 'linux-v8-dr': 'gyp_release_x64', | 26 'linux-v8-dr': 'gyp_release_x64', |
18 }, | 27 }, |
19 'client.v8': { | 28 'client.v8': { |
20 # Linux. | 29 # Linux. |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 'v8_linux_mipsel_compile_rel': 'gyp_release_simulate_mipsel', | 181 'v8_linux_mipsel_compile_rel': 'gyp_release_simulate_mipsel', |
173 'v8_linux_mips64el_compile_rel': 'gyp_release_simulate_mips64el', | 182 'v8_linux_mips64el_compile_rel': 'gyp_release_simulate_mips64el', |
174 'v8_android_arm_compile_rel': 'gyp_release_android_arm', | 183 'v8_android_arm_compile_rel': 'gyp_release_android_arm', |
175 }, | 184 }, |
176 }, | 185 }, |
177 | 186 |
178 | 187 |
179 # To ease readability, config values are ordered by: | 188 # To ease readability, config values are ordered by: |
180 # gyp/gn, release/debug, arch type, other values alphabetically. | 189 # gyp/gn, release/debug, arch type, other values alphabetically. |
181 'configs': { | 190 'configs': { |
| 191 # Developer default configs. |
| 192 'default_debug_x64': [ |
| 193 'gn', 'debug', 'x64', 'v8_enable_slow_dchecks', 'v8_full_debug'], |
| 194 'default_optdebug_x64': [ |
| 195 'gn', 'debug', 'x64', 'v8_enable_slow_dchecks'], |
| 196 'default_release_x64': [ |
| 197 'gn', 'release', 'x64'], |
| 198 'default_debug_x86': [ |
| 199 'gn', 'debug', 'x86', 'v8_enable_slow_dchecks', 'v8_full_debug'], |
| 200 'default_optdebug_x86': [ |
| 201 'gn', 'debug', 'x86', 'v8_enable_slow_dchecks'], |
| 202 'default_release_x86': [ |
| 203 'gn', 'release', 'x86'], |
| 204 |
| 205 |
182 # GN release configs for x64. | 206 # GN release configs for x64. |
183 'gn_release_x64': [ | 207 'gn_release_x64': [ |
184 'gn', 'release_bot', 'x64', 'swarming'], | 208 'gn', 'release_bot', 'x64', 'swarming'], |
185 'gn_release_x64_internal': [ | 209 'gn_release_x64_internal': [ |
186 'gn', 'release_bot', 'x64', 'swarming', 'v8_snapshot_internal'], | 210 'gn', 'release_bot', 'x64', 'swarming', 'v8_snapshot_internal'], |
187 'gn_release_x64_trybot': [ | 211 'gn_release_x64_trybot': [ |
188 'gn', 'release_trybot', 'x64', 'swarming'], | 212 'gn', 'release_trybot', 'x64', 'swarming'], |
189 | 213 |
190 # GN debug configs for x64. | 214 # GN debug configs for x64. |
191 'gn_debug_x64': [ | 215 'gn_debug_x64': [ |
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
630 'gn_args': 'target_cpu="x64"', | 654 'gn_args': 'target_cpu="x64"', |
631 'gyp_defines': 'target_arch=x64', | 655 'gyp_defines': 'target_arch=x64', |
632 }, | 656 }, |
633 | 657 |
634 'x86': { | 658 'x86': { |
635 'gn_args': 'target_cpu="x86"', | 659 'gn_args': 'target_cpu="x86"', |
636 'gyp_defines': 'target_arch=ia32', | 660 'gyp_defines': 'target_arch=ia32', |
637 }, | 661 }, |
638 }, | 662 }, |
639 } | 663 } |
OLD | NEW |