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

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

Issue 2371713002: [build] Enable shared libraries for arm debug (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: , Created 4 years, 2 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 'swarming'], 252 'swarming'],
253 'gn_release_simulate_arm64_trybot': [ 253 'gn_release_simulate_arm64_trybot': [
254 'gn', 'release_trybot', 'simulate_arm64', 'swarming'], 254 'gn', 'release_trybot', 'simulate_arm64', 'swarming'],
255 'gn_release_simulate_mipsel': [ 255 'gn_release_simulate_mipsel': [
256 'gn', 'release_bot', 'simulate_mipsel', 'swarming'], 256 'gn', 'release_bot', 'simulate_mipsel', 'swarming'],
257 'gn_release_simulate_mips64el': [ 257 'gn_release_simulate_mips64el': [
258 'gn', 'release_bot', 'simulate_mips64el', 'swarming'], 258 'gn', 'release_bot', 'simulate_mips64el', 'swarming'],
259 259
260 # GN debug configs for arm. 260 # GN debug configs for arm.
261 'gn_debug_arm': [ 261 'gn_debug_arm': [
262 'gn', 'debug_bot', 'arm', 'crosscompile', 'hard_float', 'swarming'], 262 'gn', 'debug', 'arm',
263 'shared', 'goma', 'v8_enable_slow_dchecks', 'v8_optimized_debug',
264 'crosscompile', 'hard_float', 'swarming'],
263 265
264 # GN release configs for arm. 266 # GN release configs for arm.
265 'gn_release_arm': [ 267 'gn_release_arm': [
266 'gn', 'release_bot', 'arm', 'crosscompile', 'hard_float', 'swarming'], 268 'gn', 'release_bot', 'arm', 'crosscompile', 'hard_float', 'swarming'],
267 'gn_release_android_arm': [ 269 'gn_release_android_arm': [
268 'gn', 'release_bot', 'arm', 'android', 'crosscompile', 'swarming'], 270 'gn', 'release_bot', 'arm', 'android', 'crosscompile', 'swarming'],
269 'gn_release_android_arm64': [ 271 'gn_release_android_arm64': [
270 'gn', 'release_bot', 'arm64', 'android', 'crosscompile', 'swarming'], 272 'gn', 'release_bot', 'arm64', 'android', 'crosscompile', 'swarming'],
271 273
272 # GN release configs for x64. 274 # GN release configs for x64.
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 'gn_args': 'target_cpu="x64"', 675 'gn_args': 'target_cpu="x64"',
674 'gyp_defines': 'target_arch=x64', 676 'gyp_defines': 'target_arch=x64',
675 }, 677 },
676 678
677 'x86': { 679 'x86': {
678 'gn_args': 'target_cpu="x86"', 680 'gn_args': 'target_cpu="x86"',
679 'gyp_defines': 'target_arch=ia32', 681 'gyp_defines': 'target_arch=ia32',
680 }, 682 },
681 }, 683 },
682 } 684 }
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