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

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

Issue 2124763002: [build] Switch x87 to swarming. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 'gyp', 'debug_bot', 'simulate_arm', 'asan', 'edge'], 218 'gyp', 'debug_bot', 'simulate_arm', 'asan', 'edge'],
219 'gyp_debug_simulate_arm64': [ 219 'gyp_debug_simulate_arm64': [
220 'gyp', 'debug_bot', 'simulate_arm64', 'swarming'], 220 'gyp', 'debug_bot', 'simulate_arm64', 'swarming'],
221 'gyp_debug_simulate_arm64_asan_edge': [ 221 'gyp_debug_simulate_arm64_asan_edge': [
222 'gyp', 'debug_bot', 'simulate_arm64', 'asan', 'lsan', 'edge'], 222 'gyp', 'debug_bot', 'simulate_arm64', 'asan', 'lsan', 'edge'],
223 'gyp_debug_simulate_arm64_no_snap': [ 223 'gyp_debug_simulate_arm64_no_snap': [
224 'gyp', 'debug_bot', 'simulate_arm64', 'swarming', 'v8_snapshot_none'], 224 'gyp', 'debug_bot', 'simulate_arm64', 'swarming', 'v8_snapshot_none'],
225 'gyp_debug_simulate_mipsel_asan_edge': [ 225 'gyp_debug_simulate_mipsel_asan_edge': [
226 'gyp', 'debug_bot', 'simulate_mipsel', 'asan', 'edge'], 226 'gyp', 'debug_bot', 'simulate_mipsel', 'asan', 'edge'],
227 'gyp_debug_simulate_x87_no_snap': [ 227 'gyp_debug_simulate_x87_no_snap': [
228 'gyp', 'debug_bot', 'simulate_x87', 'v8_snapshot_none'], 228 'gyp', 'debug_bot', 'simulate_x87', 'swarming', 'v8_snapshot_none'],
229 229
230 # Gyp debug configs for x64. 230 # Gyp debug configs for x64.
231 'gyp_debug_x64': [ 231 'gyp_debug_x64': [
232 'gyp', 'debug_bot', 'x64', 'swarming'], 232 'gyp', 'debug_bot', 'x64', 'swarming'],
233 'gyp_debug_x64_asan_edge': [ 233 'gyp_debug_x64_asan_edge': [
234 'gyp', 'debug_bot', 'x64', 'asan', 'lsan', 'edge'], 234 'gyp', 'debug_bot', 'x64', 'asan', 'lsan', 'edge'],
235 'gyp_debug_x64_minimal_symbols': [ 235 'gyp_debug_x64_minimal_symbols': [
236 'gyp', 'debug_bot', 'x64', 'minimal_symbols', 'swarming'], 236 'gyp', 'debug_bot', 'x64', 'minimal_symbols', 'swarming'],
237 237
238 # Gyp debug configs for x86. 238 # Gyp debug configs for x86.
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 'gn_args': 'target_cpu="x64"', 624 'gn_args': 'target_cpu="x64"',
625 'gyp_defines': 'target_arch=x64', 625 'gyp_defines': 'target_arch=x64',
626 }, 626 },
627 627
628 'x86': { 628 'x86': {
629 'gn_args': 'target_cpu="x86"', 629 'gn_args': 'target_cpu="x86"',
630 'gyp_defines': 'target_arch=ia32', 630 'gyp_defines': 'target_arch=ia32',
631 }, 631 },
632 }, 632 },
633 } 633 }
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