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

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

Issue 2300333002: [gn] Add generic subcommands and provide list command (Closed)
Patch Set: s/x86/ia32 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 | tools/dev/v8gen.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': {
11 'developer_default': { 11 'developer_default': {
12 'arm.debug': 'default_debug_arm', 12 'arm.debug': 'default_debug_arm',
13 'arm.optdebug': 'default_optdebug_arm', 13 'arm.optdebug': 'default_optdebug_arm',
14 'arm.release': 'default_release_arm', 14 'arm.release': 'default_release_arm',
15 'arm64.debug': 'default_debug_arm64', 15 'arm64.debug': 'default_debug_arm64',
16 'arm64.optdebug': 'default_optdebug_arm64', 16 'arm64.optdebug': 'default_optdebug_arm64',
17 'arm64.release': 'default_release_arm64', 17 'arm64.release': 'default_release_arm64',
18 'ia32.debug': 'default_debug_x86',
19 'ia32.optdebug': 'default_optdebug_x86',
20 'ia32.release': 'default_release_x86',
18 'x64.debug': 'default_debug_x64', 21 'x64.debug': 'default_debug_x64',
19 'x64.optdebug': 'default_optdebug_x64', 22 'x64.optdebug': 'default_optdebug_x64',
20 'x64.release': 'default_release_x64', 23 'x64.release': 'default_release_x64',
21 'x86.debug': 'default_debug_x86',
22 'x86.optdebug': 'default_optdebug_x86',
23 'x86.release': 'default_release_x86',
24 }, 24 },
25 25
26 'client.dart.fyi': { 26 'client.dart.fyi': {
27 'v8-linux-release': 'gyp_release_x86_disassembler', 27 'v8-linux-release': 'gyp_release_x86_disassembler',
28 'v8-win-release': 'gyp_release_x86_disassembler', 28 'v8-win-release': 'gyp_release_x86_disassembler',
29 'v8-mac-release': 'gyp_release_x86_disassembler', 29 'v8-mac-release': 'gyp_release_x86_disassembler',
30 }, 30 },
31 'client.dynamorio': { 31 'client.dynamorio': {
32 'linux-v8-dr': 'gyp_release_x64', 32 'linux-v8-dr': 'gyp_release_x64',
33 }, 33 },
(...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 'gn_args': 'target_cpu="x64"', 681 'gn_args': 'target_cpu="x64"',
682 'gyp_defines': 'target_arch=x64', 682 'gyp_defines': 'target_arch=x64',
683 }, 683 },
684 684
685 'x86': { 685 'x86': {
686 'gn_args': 'target_cpu="x86"', 686 'gn_args': 'target_cpu="x86"',
687 'gyp_defines': 'target_arch=ia32', 687 'gyp_defines': 'target_arch=ia32',
688 }, 688 },
689 }, 689 },
690 } 690 }
OLDNEW
« no previous file with comments | « no previous file | tools/dev/v8gen.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698