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 'client.dart.fyi': { | 11 'client.dart.fyi': { |
12 'v8-linux-release': 'gyp_release_x86_disassembler', | 12 'v8-linux-release': 'gyp_release_x86_disassembler', |
13 'v8-win-release': 'gyp_release_x86_disassembler', | 13 'v8-win-release': 'gyp_release_x86_disassembler', |
14 'v8-mac-release': 'gyp_release_x86_disassembler', | 14 'v8-mac-release': 'gyp_release_x86_disassembler', |
15 }, | 15 }, |
16 'client.dynamorio': { | 16 'client.dynamorio': { |
17 'linux-v8-dr': 'gyp_release_x64', | 17 'linux-v8-dr': 'gyp_release_x64', |
18 }, | 18 }, |
19 'client.v8': { | 19 'client.v8': { |
20 # Linux. | 20 # Linux. |
21 'V8 Linux - builder': 'gyp_release_x86_gcmole', | 21 'V8 Linux - builder': 'gyp_release_x86_gcmole', |
22 'V8 Linux - debug builder': 'gyp_debug_x86', | 22 'V8 Linux - debug builder': 'gyp_debug_x86', |
23 'V8 Linux - nosnap builder': 'gyp_release_x86_no_snap', | 23 'V8 Linux - nosnap builder': 'gyp_release_x86_no_snap', |
24 'V8 Linux - nosnap debug builder': 'gyp_debug_x86_no_snap', | 24 'V8 Linux - nosnap debug builder': 'gyp_debug_x86_no_snap', |
25 'V8 Linux - shared': 'gyp_release_x86_shared_verify_heap', | 25 'V8 Linux - shared': 'gyp_release_x86_shared_verify_heap', |
26 'V8 Linux - noi18n - debug': 'gyp_debug_x86_no_i18n', | 26 'V8 Linux - noi18n - debug': 'gyp_debug_x86_no_i18n', |
27 # Linux64. | 27 # Linux64. |
28 'V8 Linux64 - builder': 'gn_release_x64', | 28 'V8 Linux64 - builder': 'gn_release_x64', |
29 'V8 Linux64 - debug builder': 'gn_debug_x64_valgrind', | 29 'V8 Linux64 - debug builder': 'gn_debug_x64_valgrind', |
30 'V8 Linux64 - custom snapshot - debug builder': 'gyp_debug_x64_custom', | 30 'V8 Linux64 - custom snapshot - debug builder': 'gn_debug_x64_custom', |
31 'V8 Linux64 - internal snapshot': 'gn_release_x64_internal', | 31 'V8 Linux64 - internal snapshot': 'gn_release_x64_internal', |
32 # Windows. | 32 # Windows. |
33 'V8 Win32 - builder': 'gyp_release_x86_minimal_symbols', | 33 'V8 Win32 - builder': 'gyp_release_x86_minimal_symbols', |
34 'V8 Win32 - debug builder': 'gyp_debug_x86_minimal_symbols', | 34 'V8 Win32 - debug builder': 'gyp_debug_x86_minimal_symbols', |
35 'V8 Win32 - nosnap - shared': | 35 'V8 Win32 - nosnap - shared': |
36 'gyp_release_x86_no_snap_shared_minimal_symbols', | 36 'gyp_release_x86_no_snap_shared_minimal_symbols', |
37 'V8 Win64': 'gyp_release_x64_minimal_symbols', | 37 'V8 Win64': 'gyp_release_x64_minimal_symbols', |
38 'V8 Win64 - debug': 'gyp_debug_x64_minimal_symbols', | 38 'V8 Win64 - debug': 'gyp_debug_x64_minimal_symbols', |
39 'V8 Win64 - clang': 'gyp_release_x64_clang', | 39 'V8 Win64 - clang': 'gyp_release_x64_clang', |
40 # Mac. | 40 # Mac. |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 'configs': { | 179 'configs': { |
180 # GN release configs for x64. | 180 # GN release configs for x64. |
181 'gn_release_x64': [ | 181 'gn_release_x64': [ |
182 'gn', 'release_bot', 'x64', 'swarming'], | 182 'gn', 'release_bot', 'x64', 'swarming'], |
183 'gn_release_x64_internal': [ | 183 'gn_release_x64_internal': [ |
184 'gn', 'release_bot', 'x64', 'swarming', 'v8_snapshot_internal'], | 184 'gn', 'release_bot', 'x64', 'swarming', 'v8_snapshot_internal'], |
185 'gn_release_x64_trybot': [ | 185 'gn_release_x64_trybot': [ |
186 'gn', 'release_trybot', 'x64', 'swarming'], | 186 'gn', 'release_trybot', 'x64', 'swarming'], |
187 | 187 |
188 # GN debug configs for x64. | 188 # GN debug configs for x64. |
| 189 'gn_debug_x64_custom': [ |
| 190 'gn', 'debug_bot', 'x64', 'swarming', 'v8_snapshot_custom'], |
189 'gn_debug_x64_trybot': [ | 191 'gn_debug_x64_trybot': [ |
190 'gn', 'debug_trybot', 'x64', 'swarming'], | 192 'gn', 'debug_trybot', 'x64', 'swarming'], |
191 'gn_debug_x64_valgrind': [ | 193 'gn_debug_x64_valgrind': [ |
192 'gn', 'debug_bot', 'x64', 'swarming', 'valgrind'], | 194 'gn', 'debug_bot', 'x64', 'swarming', 'valgrind'], |
193 | 195 |
194 # Gyp debug configs for arm. | 196 # Gyp debug configs for arm. |
195 'gyp_debug_arm': [ | 197 'gyp_debug_arm': [ |
196 'gyp', 'debug_bot', 'arm', 'crosscompile', 'hard_float', 'swarming'], | 198 'gyp', 'debug_bot', 'arm', 'crosscompile', 'hard_float', 'swarming'], |
197 | 199 |
198 # Gyp debug configs for simulators. | 200 # Gyp debug configs for simulators. |
(...skipping 10 matching lines...) Expand all Loading... |
209 'gyp_debug_simulate_mipsel_asan_edge': [ | 211 'gyp_debug_simulate_mipsel_asan_edge': [ |
210 'gyp', 'debug_bot', 'simulate_mipsel', 'asan', 'edge'], | 212 'gyp', 'debug_bot', 'simulate_mipsel', 'asan', 'edge'], |
211 'gyp_debug_simulate_x87_no_snap': [ | 213 'gyp_debug_simulate_x87_no_snap': [ |
212 'gyp', 'debug_bot', 'simulate_x87', 'v8_snapshot_none'], | 214 'gyp', 'debug_bot', 'simulate_x87', 'v8_snapshot_none'], |
213 | 215 |
214 # Gyp debug configs for x64. | 216 # Gyp debug configs for x64. |
215 'gyp_debug_x64': [ | 217 'gyp_debug_x64': [ |
216 'gyp', 'debug_bot', 'x64', 'swarming'], | 218 'gyp', 'debug_bot', 'x64', 'swarming'], |
217 'gyp_debug_x64_asan_edge': [ | 219 'gyp_debug_x64_asan_edge': [ |
218 'gyp', 'debug_bot', 'x64', 'asan', 'lsan', 'edge'], | 220 'gyp', 'debug_bot', 'x64', 'asan', 'lsan', 'edge'], |
219 'gyp_debug_x64_custom': [ | |
220 'gyp', 'debug_bot', 'x64', 'swarming', 'v8_snapshot_custom'], | |
221 'gyp_debug_x64_minimal_symbols': [ | 221 'gyp_debug_x64_minimal_symbols': [ |
222 'gyp', 'debug_bot', 'x64', 'minimal_symbols', 'swarming'], | 222 'gyp', 'debug_bot', 'x64', 'minimal_symbols', 'swarming'], |
223 | 223 |
224 # Gyp debug configs for x86. | 224 # Gyp debug configs for x86. |
225 'gyp_debug_x86': [ | 225 'gyp_debug_x86': [ |
226 'gyp', 'debug_bot', 'x86', 'swarming'], | 226 'gyp', 'debug_bot', 'x86', 'swarming'], |
227 'gyp_debug_x86_minimal_symbols': [ | 227 'gyp_debug_x86_minimal_symbols': [ |
228 'gyp', 'debug_bot', 'x86', 'minimal_symbols', 'swarming'], | 228 'gyp', 'debug_bot', 'x86', 'minimal_symbols', 'swarming'], |
229 'gyp_debug_x86_trybot': [ | 229 'gyp_debug_x86_trybot': [ |
230 'gyp', 'debug_trybot', 'x86', 'swarming'], | 230 'gyp', 'debug_trybot', 'x86', 'swarming'], |
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 'gn_args': 'v8_interpreted_regexp=true', | 582 'gn_args': 'v8_interpreted_regexp=true', |
583 'gyp_defines': 'v8_interpreted_regexp=1', | 583 'gyp_defines': 'v8_interpreted_regexp=1', |
584 }, | 584 }, |
585 | 585 |
586 'v8_optimized_debug': { | 586 'v8_optimized_debug': { |
587 # This is the default in gn for debug. | 587 # This is the default in gn for debug. |
588 'gyp_defines': 'v8_optimized_debug=1', | 588 'gyp_defines': 'v8_optimized_debug=1', |
589 }, | 589 }, |
590 | 590 |
591 'v8_snapshot_custom': { | 591 'v8_snapshot_custom': { |
592 # TODO(machenbach): Add this to gn. | 592 # GN path is relative to project root. |
593 # Path needs to be relative to src/v8.gyp. | 593 'gn_args': 'v8_embed_script="test/mjsunit/mjsunit.js"', |
| 594 |
| 595 # Gyp path is relative to src/v8.gyp. |
594 'gyp_defines': 'embed_script=../test/mjsunit/mjsunit.js', | 596 'gyp_defines': 'embed_script=../test/mjsunit/mjsunit.js', |
595 }, | 597 }, |
596 | 598 |
597 'v8_snapshot_internal': { | 599 'v8_snapshot_internal': { |
598 'gn_args': 'v8_use_external_startup_data=false', | 600 'gn_args': 'v8_use_external_startup_data=false', |
599 'gyp_defines': 'v8_use_external_startup_data=0', | 601 'gyp_defines': 'v8_use_external_startup_data=0', |
600 }, | 602 }, |
601 | 603 |
602 'v8_snapshot_none': { | 604 'v8_snapshot_none': { |
603 'gn_args': 'v8_use_snapshot=false', | 605 'gn_args': 'v8_use_snapshot=false', |
604 'gyp_defines': 'v8_use_snapshot=false', | 606 'gyp_defines': 'v8_use_snapshot=false', |
605 }, | 607 }, |
606 | 608 |
607 'v8_verify_heap': { | 609 'v8_verify_heap': { |
608 'gn_args': 'v8_enable_verify_heap=true', | 610 'gn_args': 'v8_enable_verify_heap=true', |
609 'gyp_defines': 'v8_enable_verify_heap=1', | 611 'gyp_defines': 'v8_enable_verify_heap=1', |
610 }, | 612 }, |
611 | 613 |
612 'x64': { | 614 'x64': { |
613 'gn_args': 'target_cpu="x64"', | 615 'gn_args': 'target_cpu="x64"', |
614 'gyp_defines': 'target_arch=x64', | 616 'gyp_defines': 'target_arch=x64', |
615 }, | 617 }, |
616 | 618 |
617 'x86': { | 619 'x86': { |
618 'gn_args': 'target_cpu="x86"', | 620 'gn_args': 'target_cpu="x86"', |
619 'gyp_defines': 'target_arch=ia32', | 621 'gyp_defines': 'target_arch=ia32', |
620 }, | 622 }, |
621 }, | 623 }, |
622 } | 624 } |
OLD | NEW |