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

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

Issue 2322163003: [gn] Add gn configs for mips to match old behavior (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 | « BUILD.gn ('k') | 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 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
545 'gn_args': 'target_cpu="x86" v8_target_cpu="arm"', 545 'gn_args': 'target_cpu="x86" v8_target_cpu="arm"',
546 'gyp_defines': 'target_arch=ia32 v8_target_arch=arm', 546 'gyp_defines': 'target_arch=ia32 v8_target_arch=arm',
547 }, 547 },
548 548
549 'simulate_arm64': { 549 'simulate_arm64': {
550 'gn_args': 'target_cpu="x64" v8_target_cpu="arm64"', 550 'gn_args': 'target_cpu="x64" v8_target_cpu="arm64"',
551 'gyp_defines': 'target_arch=x64 v8_target_arch=arm64', 551 'gyp_defines': 'target_arch=x64 v8_target_arch=arm64',
552 }, 552 },
553 553
554 'simulate_mipsel': { 554 'simulate_mipsel': {
555 'gn_args': 'target_cpu="x86" v8_target_cpu="mipsel"', 555 'gn_args':
556 'target_cpu="x86" v8_target_cpu="mipsel" mips_arch_variant="r2"',
556 'gyp_defines': 'target_arch=ia32 v8_target_arch=mipsel', 557 'gyp_defines': 'target_arch=ia32 v8_target_arch=mipsel',
557 }, 558 },
558 559
559 'simulate_mips64el': { 560 'simulate_mips64el': {
560 'gn_args': 'target_cpu="x64" v8_target_cpu="mips64el"', 561 'gn_args': 'target_cpu="x64" v8_target_cpu="mips64el"',
561 'gyp_defines': 'target_arch=x64 v8_target_arch=mips64el', 562 'gyp_defines': 'target_arch=x64 v8_target_arch=mips64el',
562 }, 563 },
563 564
564 'simulate_ppc': { 565 'simulate_ppc': {
565 'gn_args': 'target_cpu="x86" v8_target_cpu="ppc"', 566 'gn_args': 'target_cpu="x86" v8_target_cpu="ppc"',
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 'gn_args': 'target_cpu="x64"', 681 'gn_args': 'target_cpu="x64"',
681 'gyp_defines': 'target_arch=x64', 682 'gyp_defines': 'target_arch=x64',
682 }, 683 },
683 684
684 'x86': { 685 'x86': {
685 'gn_args': 'target_cpu="x86"', 686 'gn_args': 'target_cpu="x86"',
686 'gyp_defines': 'target_arch=ia32', 687 'gyp_defines': 'target_arch=ia32',
687 }, 688 },
688 }, 689 },
689 } 690 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698