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 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 'crosscompile': { | 431 'crosscompile': { |
432 'gyp_crosscompile': True, | 432 'gyp_crosscompile': True, |
433 }, | 433 }, |
434 | 434 |
435 'dcheck_always_on': { | 435 'dcheck_always_on': { |
436 'gn_args': 'dcheck_always_on=true', | 436 'gn_args': 'dcheck_always_on=true', |
437 'gyp_defines': 'dcheck_always_on=1', | 437 'gyp_defines': 'dcheck_always_on=1', |
438 }, | 438 }, |
439 | 439 |
440 'debug': { | 440 'debug': { |
441 'gn_args': 'is_debug=true', | 441 'gn_args': 'is_debug=true v8_enable_backtrace=true', |
| 442 'gyp_defines': 'v8_enable_backtrace=1', |
442 }, | 443 }, |
443 | 444 |
444 'debug_bot': { | 445 'debug_bot': { |
445 'mixins': [ | 446 'mixins': [ |
446 'debug', 'static', 'goma', 'v8_enable_slow_dchecks', | 447 'debug', 'static', 'goma', 'v8_enable_slow_dchecks', |
447 'v8_optimized_debug'], | 448 'v8_optimized_debug'], |
448 }, | 449 }, |
449 | 450 |
450 'debug_trybot': { | 451 'debug_trybot': { |
451 'mixins': ['debug_bot', 'minimal_symbols'], | 452 'mixins': ['debug_bot', 'minimal_symbols'], |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
660 'gn_args': 'target_cpu="x64"', | 661 'gn_args': 'target_cpu="x64"', |
661 'gyp_defines': 'target_arch=x64', | 662 'gyp_defines': 'target_arch=x64', |
662 }, | 663 }, |
663 | 664 |
664 'x86': { | 665 'x86': { |
665 'gn_args': 'target_cpu="x86"', | 666 'gn_args': 'target_cpu="x86"', |
666 'gyp_defines': 'target_arch=ia32', | 667 'gyp_defines': 'target_arch=ia32', |
667 }, | 668 }, |
668 }, | 669 }, |
669 } | 670 } |
OLD | NEW |