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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 'gn_args': 'symbol_level=1', | 491 'gn_args': 'symbol_level=1', |
492 'gyp_defines': 'fastbuild=1', | 492 'gyp_defines': 'fastbuild=1', |
493 }, | 493 }, |
494 | 494 |
495 'mips': { | 495 'mips': { |
496 'gn_args': 'target_cpu="mips"', | 496 'gn_args': 'target_cpu="mips"', |
497 'gyp_defines': 'target_arch=mips', | 497 'gyp_defines': 'target_arch=mips', |
498 }, | 498 }, |
499 | 499 |
500 'msan': { | 500 'msan': { |
501 'gn_args': 'is_msan=true', | 501 'gn_args': ('is_msan=true msan_track_origins=2 ' |
502 'gyp_defines': 'clang=1 msan=1', | 502 'use_prebuilt_instrumented_libraries=true'), |
| 503 'gyp_defines': ('clang=1 msan=1 msan_track_origins=2 ' |
| 504 'use_prebuilt_instrumented_libraries=1'), |
503 }, | 505 }, |
504 | 506 |
505 'release': { | 507 'release': { |
506 'gn_args': 'is_debug=false', | 508 'gn_args': 'is_debug=false', |
507 }, | 509 }, |
508 | 510 |
509 'release_bot': { | 511 'release_bot': { |
510 'mixins': ['release', 'static', 'goma'], | 512 'mixins': ['release', 'static', 'goma'], |
511 }, | 513 }, |
512 | 514 |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
658 'gn_args': 'target_cpu="x64"', | 660 'gn_args': 'target_cpu="x64"', |
659 'gyp_defines': 'target_arch=x64', | 661 'gyp_defines': 'target_arch=x64', |
660 }, | 662 }, |
661 | 663 |
662 'x86': { | 664 'x86': { |
663 'gn_args': 'target_cpu="x86"', | 665 'gn_args': 'target_cpu="x86"', |
664 'gyp_defines': 'target_arch=ia32', | 666 'gyp_defines': 'target_arch=ia32', |
665 }, | 667 }, |
666 }, | 668 }, |
667 } | 669 } |
OLD | NEW |