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

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

Issue 2321563007: [test] Fix the noi18n trybot (Closed)
Patch Set: Created 4 years, 3 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 | « no previous file | no next file » | 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 596 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 'gn_args': 'is_tsan=true', 607 'gn_args': 'is_tsan=true',
608 'gyp_defines': 'clang=1 tsan=1', 608 'gyp_defines': 'clang=1 tsan=1',
609 }, 609 },
610 610
611 'valgrind': { 611 'valgrind': {
612 'gn_args': 'v8_has_valgrind=true', 612 'gn_args': 'v8_has_valgrind=true',
613 'gyp_defines': 'has_valgrind=1', 613 'gyp_defines': 'has_valgrind=1',
614 }, 614 },
615 615
616 'v8_no_i18n': { 616 'v8_no_i18n': {
617 'gn_args': 'v8_enable_i18n_support=false', 617 'gn_args': 'v8_enable_i18n_support=false icu_use_data_file_flag=false',
618 'gyp_defines': 'v8_enable_i18n_support=0', 618 'gyp_defines': 'v8_enable_i18n_support=0 icu_use_data_file_flag=0',
619 }, 619 },
620 620
621 'v8_enable_disassembler': { 621 'v8_enable_disassembler': {
622 'gn_args': 'v8_enable_disassembler=true', 622 'gn_args': 'v8_enable_disassembler=true',
623 'gyp_defines': 'v8_enable_disassembler=1', 623 'gyp_defines': 'v8_enable_disassembler=1',
624 }, 624 },
625 625
626 'v8_enable_slow_dchecks': { 626 'v8_enable_slow_dchecks': {
627 'gn_args': 'v8_enable_slow_dchecks=true', 627 'gn_args': 'v8_enable_slow_dchecks=true',
628 'gyp_defines': 'v8_enable_slow_dchecks=1', 628 'gyp_defines': 'v8_enable_slow_dchecks=1',
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 'gn_args': 'target_cpu="x64"', 680 'gn_args': 'target_cpu="x64"',
681 'gyp_defines': 'target_arch=x64', 681 'gyp_defines': 'target_arch=x64',
682 }, 682 },
683 683
684 'x86': { 684 'x86': {
685 'gn_args': 'target_cpu="x86"', 685 'gn_args': 'target_cpu="x86"',
686 'gyp_defines': 'target_arch=ia32', 686 'gyp_defines': 'target_arch=ia32',
687 }, 687 },
688 }, 688 },
689 } 689 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698