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

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

Issue 2736993004: [build] Add v8gen support for PPC/s390 architecture (Closed)
Patch Set: reverted bots to use gyp Created 3 years, 9 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') | tools/get_byteorder.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', 18 'ia32.debug': 'default_debug_x86',
19 'ia32.optdebug': 'default_optdebug_x86', 19 'ia32.optdebug': 'default_optdebug_x86',
20 'ia32.release': 'default_release_x86', 20 'ia32.release': 'default_release_x86',
21 'mipsel.debug': 'default_debug_mipsel', 21 'mipsel.debug': 'default_debug_mipsel',
22 'mipsel.optdebug': 'default_optdebug_mipsel', 22 'mipsel.optdebug': 'default_optdebug_mipsel',
23 'mipsel.release': 'default_release_mipsel', 23 'mipsel.release': 'default_release_mipsel',
24 'mips64el.debug': 'default_debug_mips64el', 24 'mips64el.debug': 'default_debug_mips64el',
25 'mips64el.optdebug': 'default_optdebug_mips64el', 25 'mips64el.optdebug': 'default_optdebug_mips64el',
26 'mips64el.release': 'default_release_mips64el', 26 'mips64el.release': 'default_release_mips64el',
27 'ppc.debug': 'default_debug_ppc',
28 'ppc.optdebug': 'default_optdebug_ppc',
29 'ppc.release': 'default_release_ppc',
30 'ppc64.debug': 'default_debug_ppc64',
31 'ppc64.optdebug': 'default_optdebug_ppc64',
32 'ppc64.release': 'default_release_ppc64',
33 's390.debug': 'default_debug_s390',
34 's390.optdebug': 'default_optdebug_s390',
35 's390.release': 'default_release_s390',
36 's390x.debug': 'default_debug_s390x',
37 's390x.optdebug': 'default_optdebug_s390x',
38 's390x.release': 'default_release_s390x',
27 'x64.debug': 'default_debug_x64', 39 'x64.debug': 'default_debug_x64',
28 'x64.optdebug': 'default_optdebug_x64', 40 'x64.optdebug': 'default_optdebug_x64',
29 'x64.release': 'default_release_x64', 41 'x64.release': 'default_release_x64',
30 }, 42 },
31 43
32 'client.dart.fyi': { 44 'client.dart.fyi': {
33 'v8-linux-release': 'gyp_release_x86_disassembler', 45 'v8-linux-release': 'gyp_release_x86_disassembler',
34 'v8-win-release': 'gyp_release_x86_disassembler', 46 'v8-win-release': 'gyp_release_x86_disassembler',
35 'v8-mac-release': 'gyp_release_x86_disassembler', 47 'v8-mac-release': 'gyp_release_x86_disassembler',
36 }, 48 },
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 'gn', 'debug', 'simulate_mipsel', 'v8_enable_slow_dchecks'], 239 'gn', 'debug', 'simulate_mipsel', 'v8_enable_slow_dchecks'],
228 'default_release_mipsel': [ 240 'default_release_mipsel': [
229 'gn', 'release', 'simulate_mipsel'], 241 'gn', 'release', 'simulate_mipsel'],
230 'default_debug_mips64el': [ 242 'default_debug_mips64el': [
231 'gn', 'debug', 'simulate_mips64el', 'v8_enable_slow_dchecks', 243 'gn', 'debug', 'simulate_mips64el', 'v8_enable_slow_dchecks',
232 'v8_full_debug'], 244 'v8_full_debug'],
233 'default_optdebug_mips64el': [ 245 'default_optdebug_mips64el': [
234 'gn', 'debug', 'simulate_mips64el', 'v8_enable_slow_dchecks'], 246 'gn', 'debug', 'simulate_mips64el', 'v8_enable_slow_dchecks'],
235 'default_release_mips64el': [ 247 'default_release_mips64el': [
236 'gn', 'release', 'simulate_mips64el'], 248 'gn', 'release', 'simulate_mips64el'],
249 'default_debug_ppc': [
250 'gn', 'debug', 'simulate_ppc', 'v8_enable_slow_dchecks',
251 'v8_full_debug'],
252 'default_optdebug_ppc': [
253 'gn', 'debug', 'simulate_ppc', 'v8_enable_slow_dchecks'],
254 'default_release_ppc': [
255 'gn', 'release', 'simulate_ppc'],
256 'default_debug_ppc64': [
257 'gn', 'debug', 'simulate_ppc64', 'v8_enable_slow_dchecks',
258 'v8_full_debug'],
259 'default_optdebug_ppc64': [
260 'gn', 'debug', 'simulate_ppc64', 'v8_enable_slow_dchecks'],
261 'default_release_ppc64': [
262 'gn', 'release', 'simulate_ppc64'],
263 'default_debug_s390': [
264 'gn', 'debug', 'simulate_s390', 'v8_enable_slow_dchecks',
265 'v8_full_debug'],
266 'default_optdebug_s390': [
267 'gn', 'debug', 'simulate_s390', 'v8_enable_slow_dchecks'],
268 'default_release_s390': [
269 'gn', 'release', 'simulate_s390'],
270 'default_debug_s390x': [
271 'gn', 'debug', 'simulate_s390x', 'v8_enable_slow_dchecks',
272 'v8_full_debug'],
273 'default_optdebug_s390x': [
274 'gn', 'debug', 'simulate_s390x', 'v8_enable_slow_dchecks'],
275 'default_release_s390x': [
276 'gn', 'release', 'simulate_s390x'],
237 'default_debug_x64': [ 277 'default_debug_x64': [
238 'gn', 'debug', 'x64', 'v8_enable_slow_dchecks', 'v8_full_debug'], 278 'gn', 'debug', 'x64', 'v8_enable_slow_dchecks', 'v8_full_debug'],
239 'default_optdebug_x64': [ 279 'default_optdebug_x64': [
240 'gn', 'debug', 'x64', 'v8_enable_slow_dchecks'], 280 'gn', 'debug', 'x64', 'v8_enable_slow_dchecks'],
241 'default_release_x64': [ 281 'default_release_x64': [
242 'gn', 'release', 'x64'], 282 'gn', 'release', 'x64'],
243 'default_debug_x86': [ 283 'default_debug_x86': [
244 'gn', 'debug', 'x86', 'v8_enable_slow_dchecks', 'v8_full_debug'], 284 'gn', 'debug', 'x86', 'v8_enable_slow_dchecks', 'v8_full_debug'],
245 'default_optdebug_x86': [ 285 'default_optdebug_x86': [
246 'gn', 'debug', 'x86', 'v8_enable_slow_dchecks'], 286 'gn', 'debug', 'x86', 'v8_enable_slow_dchecks'],
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 'gn_args': 'target_cpu="x64"', 772 'gn_args': 'target_cpu="x64"',
733 'gyp_defines': 'target_arch=x64', 773 'gyp_defines': 'target_arch=x64',
734 }, 774 },
735 775
736 'x86': { 776 'x86': {
737 'gn_args': 'target_cpu="x86"', 777 'gn_args': 'target_cpu="x86"',
738 'gyp_defines': 'target_arch=ia32', 778 'gyp_defines': 'target_arch=ia32',
739 }, 779 },
740 }, 780 },
741 } 781 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | tools/get_byteorder.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698