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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 'swarming'], | 252 'swarming'], |
253 'gn_release_simulate_arm64_trybot': [ | 253 'gn_release_simulate_arm64_trybot': [ |
254 'gn', 'release_trybot', 'simulate_arm64', 'swarming'], | 254 'gn', 'release_trybot', 'simulate_arm64', 'swarming'], |
255 'gn_release_simulate_mipsel': [ | 255 'gn_release_simulate_mipsel': [ |
256 'gn', 'release_bot', 'simulate_mipsel', 'swarming'], | 256 'gn', 'release_bot', 'simulate_mipsel', 'swarming'], |
257 'gn_release_simulate_mips64el': [ | 257 'gn_release_simulate_mips64el': [ |
258 'gn', 'release_bot', 'simulate_mips64el', 'swarming'], | 258 'gn', 'release_bot', 'simulate_mips64el', 'swarming'], |
259 | 259 |
260 # GN debug configs for arm. | 260 # GN debug configs for arm. |
261 'gn_debug_arm': [ | 261 'gn_debug_arm': [ |
262 'gn', 'debug', 'arm', | 262 'gn', 'debug_bot', 'arm', 'crosscompile', 'hard_float', 'swarming'], |
263 'shared', 'goma', 'v8_enable_slow_dchecks', 'v8_optimized_debug', | |
264 'crosscompile', 'hard_float', 'swarming'], | |
265 | 263 |
266 # GN release configs for arm. | 264 # GN release configs for arm. |
267 'gn_release_arm': [ | 265 'gn_release_arm': [ |
268 'gn', 'release_bot', 'arm', 'crosscompile', 'hard_float', 'swarming'], | 266 'gn', 'release_bot', 'arm', 'crosscompile', 'hard_float', 'swarming'], |
269 'gn_release_android_arm': [ | 267 'gn_release_android_arm': [ |
270 'gn', 'release_bot', 'arm', 'android', 'crosscompile', 'swarming'], | 268 'gn', 'release_bot', 'arm', 'android', 'crosscompile', 'swarming'], |
271 'gn_release_android_arm64': [ | 269 'gn_release_android_arm64': [ |
272 'gn', 'release_bot', 'arm64', 'android', 'crosscompile', 'swarming'], | 270 'gn', 'release_bot', 'arm64', 'android', 'crosscompile', 'swarming'], |
273 | 271 |
274 # GN release configs for x64. | 272 # GN release configs for x64. |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
450 'gyp_defines': 'dcheck_always_on=1', | 448 'gyp_defines': 'dcheck_always_on=1', |
451 }, | 449 }, |
452 | 450 |
453 'debug': { | 451 'debug': { |
454 'gn_args': 'is_debug=true v8_enable_backtrace=true', | 452 'gn_args': 'is_debug=true v8_enable_backtrace=true', |
455 'gyp_defines': 'v8_enable_backtrace=1', | 453 'gyp_defines': 'v8_enable_backtrace=1', |
456 }, | 454 }, |
457 | 455 |
458 'debug_bot': { | 456 'debug_bot': { |
459 'mixins': [ | 457 'mixins': [ |
460 'debug', 'static', 'goma', 'v8_enable_slow_dchecks', | 458 'debug', 'shared', 'goma', 'v8_enable_slow_dchecks', |
461 'v8_optimized_debug'], | 459 'v8_optimized_debug'], |
462 }, | 460 }, |
463 | 461 |
464 'debug_trybot': { | 462 'debug_trybot': { |
465 'mixins': ['debug_bot', 'minimal_symbols'], | 463 'mixins': ['debug_bot', 'minimal_symbols'], |
466 }, | 464 }, |
467 | 465 |
468 'edge': { | 466 'edge': { |
469 'gn_args': 'sanitizer_coverage_flags="edge"', | 467 'gn_args': 'sanitizer_coverage_flags="edge"', |
470 'gyp_defines': 'sanitizer_coverage=edge', | 468 'gyp_defines': 'sanitizer_coverage=edge', |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
675 'gn_args': 'target_cpu="x64"', | 673 'gn_args': 'target_cpu="x64"', |
676 'gyp_defines': 'target_arch=x64', | 674 'gyp_defines': 'target_arch=x64', |
677 }, | 675 }, |
678 | 676 |
679 'x86': { | 677 'x86': { |
680 'gn_args': 'target_cpu="x86"', | 678 'gn_args': 'target_cpu="x86"', |
681 'gyp_defines': 'target_arch=ia32', | 679 'gyp_defines': 'target_arch=ia32', |
682 }, | 680 }, |
683 }, | 681 }, |
684 } | 682 } |
OLD | NEW |