Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(478)

Side by Side Diff: infra/mb/mb_config.pyl

Issue 2649133010: [foozzie] Support multi-architecture builds (Closed)
Patch Set: Review Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gni/v8.gni ('k') | tools/foozzie/v8_foozzie.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 620 matching lines...) Expand 10 before | Expand all | Expand 10 after
631 'gn_args': 'v8_has_valgrind=true', 631 'gn_args': 'v8_has_valgrind=true',
632 'gyp_defines': 'has_valgrind=1', 632 'gyp_defines': 'has_valgrind=1',
633 }, 633 },
634 634
635 'v8_no_i18n': { 635 'v8_no_i18n': {
636 'gn_args': 'v8_enable_i18n_support=false icu_use_data_file=false', 636 'gn_args': 'v8_enable_i18n_support=false icu_use_data_file=false',
637 'gyp_defines': 'v8_enable_i18n_support=0 icu_use_data_file_flag=0', 637 'gyp_defines': 'v8_enable_i18n_support=0 icu_use_data_file_flag=0',
638 }, 638 },
639 639
640 'v8_correctness_fuzzer': { 640 'v8_correctness_fuzzer': {
641 'gn_args': 'v8_correctness_fuzzer=true', 641 'gn_args': 'v8_correctness_fuzzer=true v8_multi_arch_build=true',
642 }, 642 },
643 643
644 'v8_disable_inspector': { 644 'v8_disable_inspector': {
645 'gn_args': 'v8_enable_inspector=false', 645 'gn_args': 'v8_enable_inspector=false',
646 'gyp_defines': 'v8_enable_inspector=0 ', 646 'gyp_defines': 'v8_enable_inspector=0 ',
647 }, 647 },
648 648
649 'v8_enable_disassembler': { 649 'v8_enable_disassembler': {
650 'gn_args': 'v8_enable_disassembler=true', 650 'gn_args': 'v8_enable_disassembler=true',
651 'gyp_defines': 'v8_enable_disassembler=1', 651 'gyp_defines': 'v8_enable_disassembler=1',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
712 'gn_args': 'target_cpu="x64"', 712 'gn_args': 'target_cpu="x64"',
713 'gyp_defines': 'target_arch=x64', 713 'gyp_defines': 'target_arch=x64',
714 }, 714 },
715 715
716 'x86': { 716 'x86': {
717 'gn_args': 'target_cpu="x86"', 717 'gn_args': 'target_cpu="x86"',
718 'gyp_defines': 'target_arch=ia32', 718 'gyp_defines': 'target_arch=ia32',
719 }, 719 },
720 }, 720 },
721 } 721 }
OLDNEW
« no previous file with comments | « gni/v8.gni ('k') | tools/foozzie/v8_foozzie.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698