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

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

Issue 2549033002: [build] Make x87 bot use the snapshot. (Closed)
Patch Set: Created 4 years 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 'V8 Mips - builder': 'gyp_release_mips_no_snap_no_i18n', 109 'V8 Mips - builder': 'gyp_release_mips_no_snap_no_i18n',
110 'V8 Linux - mipsel - sim - builder': 'gn_release_simulate_mipsel', 110 'V8 Linux - mipsel - sim - builder': 'gn_release_simulate_mipsel',
111 'V8 Linux - mips64el - sim - builder': 'gn_release_simulate_mips64el', 111 'V8 Linux - mips64el - sim - builder': 'gn_release_simulate_mips64el',
112 # PPC. 112 # PPC.
113 'V8 Linux - ppc - sim': 'gyp_release_simulate_ppc', 113 'V8 Linux - ppc - sim': 'gyp_release_simulate_ppc',
114 'V8 Linux - ppc64 - sim': 'gyp_release_simulate_ppc64', 114 'V8 Linux - ppc64 - sim': 'gyp_release_simulate_ppc64',
115 # S390. 115 # S390.
116 'V8 Linux - s390 - sim': 'gyp_release_simulate_s390', 116 'V8 Linux - s390 - sim': 'gyp_release_simulate_s390',
117 'V8 Linux - s390x - sim': 'gyp_release_simulate_s390x', 117 'V8 Linux - s390x - sim': 'gyp_release_simulate_s390x',
118 # X87. 118 # X87.
119 'V8 Linux - x87 - nosnap - debug builder': 119 'V8 Linux - x87 - nosnap - debug builder': 'gyp_debug_simulate_x87',
120 'gyp_debug_simulate_x87_no_snap',
121 }, 120 },
122 'client.v8.branches': { 121 'client.v8.branches': {
123 'V8 Linux - beta branch': 'gn_release_x86', 122 'V8 Linux - beta branch': 'gn_release_x86',
124 'V8 Linux - beta branch - debug': 'gn_debug_x86', 123 'V8 Linux - beta branch - debug': 'gn_debug_x86',
125 'V8 Linux - stable branch': 'gn_release_x86', 124 'V8 Linux - stable branch': 'gn_release_x86',
126 'V8 Linux - stable branch - debug': 'gn_debug_x86', 125 'V8 Linux - stable branch - debug': 'gn_debug_x86',
127 'V8 Linux64 - beta branch': 'gn_release_x64', 126 'V8 Linux64 - beta branch': 'gn_release_x64',
128 'V8 Linux64 - beta branch - debug': 'gn_debug_x64', 127 'V8 Linux64 - beta branch - debug': 'gn_debug_x64',
129 'V8 Linux64 - stable branch': 'gn_release_x64', 128 'V8 Linux64 - stable branch': 'gn_release_x64',
130 'V8 Linux64 - stable branch - debug': 'gn_debug_x64', 129 'V8 Linux64 - stable branch - debug': 'gn_debug_x64',
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 'gn', 'release', 'x86', 'goma', 'minimal_symbols', 'shared', 'swarming', 351 'gn', 'release', 'x86', 'goma', 'minimal_symbols', 'shared', 'swarming',
353 'v8_snapshot_none'], 352 'v8_snapshot_none'],
354 'gn_release_x86_no_snap_trybot': [ 353 'gn_release_x86_no_snap_trybot': [
355 'gn', 'release_trybot', 'x86', 'swarming', 'v8_snapshot_none'], 354 'gn', 'release_trybot', 'x86', 'swarming', 'v8_snapshot_none'],
356 'gn_release_x86_shared_verify_heap': [ 355 'gn_release_x86_shared_verify_heap': [
357 'gn', 'release', 'x86', 'goma', 'shared', 'swarming', 'v8_verify_heap'], 356 'gn', 'release', 'x86', 'goma', 'shared', 'swarming', 'v8_verify_heap'],
358 'gn_release_x86_trybot': [ 357 'gn_release_x86_trybot': [
359 'gn', 'release_trybot', 'x86', 'swarming'], 358 'gn', 'release_trybot', 'x86', 'swarming'],
360 359
361 # Gyp debug configs for simulators. 360 # Gyp debug configs for simulators.
362 'gyp_debug_simulate_x87_no_snap': [ 361 'gyp_debug_simulate_x87': [
363 'gyp', 'debug_bot_static', 'simulate_x87', 'swarming', 362 'gyp', 'debug_bot_static', 'simulate_x87', 'swarming'],
364 'v8_snapshot_none'],
365 363
366 # Gyp debug configs for x86. 364 # Gyp debug configs for x86.
367 'gyp_debug_x86': [ 365 'gyp_debug_x86': [
368 'gyp', 'debug_bot', 'x86', 'swarming'], 366 'gyp', 'debug_bot', 'x86', 'swarming'],
369 'gyp_debug_x86_vtunejit': [ 367 'gyp_debug_x86_vtunejit': [
370 'gyp', 'debug_bot', 'x86', 'v8_enable_vtunejit'], 368 'gyp', 'debug_bot', 'x86', 'v8_enable_vtunejit'],
371 'gyp_full_debug_x86': [ 369 'gyp_full_debug_x86': [
372 'gyp', 'debug', 'x86', 'goma', 'static', 'v8_enable_slow_dchecks', 370 'gyp', 'debug', 'x86', 'goma', 'static', 'v8_enable_slow_dchecks',
373 'v8_full_debug'], 371 'v8_full_debug'],
374 372
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 'gn_args': 'target_cpu="x64"', 691 'gn_args': 'target_cpu="x64"',
694 'gyp_defines': 'target_arch=x64', 692 'gyp_defines': 'target_arch=x64',
695 }, 693 },
696 694
697 'x86': { 695 'x86': {
698 'gn_args': 'target_cpu="x86"', 696 'gn_args': 'target_cpu="x86"',
699 'gyp_defines': 'target_arch=ia32', 697 'gyp_defines': 'target_arch=ia32',
700 }, 698 },
701 }, 699 },
702 } 700 }
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