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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
537 'gyp_defines': | 537 'gyp_defines': |
538 'release_extra_cflags="-fno-inline-functions -fno-inline"', | 538 'release_extra_cflags="-fno-inline-functions -fno-inline"', |
539 }, | 539 }, |
540 | 540 |
541 'tsan': { | 541 'tsan': { |
542 'gn_args': 'clang=true tsan=true', | 542 'gn_args': 'clang=true tsan=true', |
543 'gyp_defines': 'clang=1 tsan=1', | 543 'gyp_defines': 'clang=1 tsan=1', |
544 }, | 544 }, |
545 | 545 |
546 'valgrind': { | 546 'valgrind': { |
547 # TODO(machenbach): Add this to gn. | 547 'gn_args': 'v8_has_valgrind=true', |
548 'gn_args': 'has_valgrind=true', | |
549 'gyp_defines': 'has_valgrind=1', | 548 'gyp_defines': 'has_valgrind=1', |
550 }, | 549 }, |
551 | 550 |
552 'v8_no_i18n': { | 551 'v8_no_i18n': { |
553 'gn_args': 'v8_enable_i18n_support=false', | 552 'gn_args': 'v8_enable_i18n_support=false', |
554 'gyp_defines': 'v8_enable_i18n_support=0', | 553 'gyp_defines': 'v8_enable_i18n_support=0', |
555 }, | 554 }, |
556 | 555 |
557 'v8_enable_disassembler': { | 556 'v8_enable_disassembler': { |
558 'gn_args': 'v8_enable_disassembler=true', | 557 'gn_args': 'v8_enable_disassembler=true', |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
614 'gn_args': 'target_cpu="x64"', | 613 'gn_args': 'target_cpu="x64"', |
615 'gyp_defines': 'target_arch=x64', | 614 'gyp_defines': 'target_arch=x64', |
616 }, | 615 }, |
617 | 616 |
618 'x86': { | 617 'x86': { |
619 'gn_args': 'target_cpu="x86"', | 618 'gn_args': 'target_cpu="x86"', |
620 'gyp_defines': 'target_arch=ia32', | 619 'gyp_defines': 'target_arch=ia32', |
621 }, | 620 }, |
622 }, | 621 }, |
623 } | 622 } |
OLD | NEW |