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

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

Issue 2304623002: [mb] Add more developer defaults to mb config. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
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 | « 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': {
11 'developer_default': { 11 'developer_default': {
12 'arm.debug': 'default_debug_arm',
13 'arm.optdebug': 'default_optdebug_arm',
14 'arm.release': 'default_release_arm',
15 'arm64.debug': 'default_debug_arm64',
16 'arm64.optdebug': 'default_optdebug_arm64',
17 'arm64.release': 'default_release_arm64',
12 'x64.debug': 'default_debug_x64', 18 'x64.debug': 'default_debug_x64',
13 'x64.optdebug': 'default_optdebug_x64', 19 'x64.optdebug': 'default_optdebug_x64',
14 'x64.release': 'default_release_x64', 20 'x64.release': 'default_release_x64',
15 'x86.debug': 'default_debug_x86', 21 'x86.debug': 'default_debug_x86',
16 'x86.optdebug': 'default_optdebug_x86', 22 'x86.optdebug': 'default_optdebug_x86',
17 'x86.release': 'default_release_x86', 23 'x86.release': 'default_release_x86',
18 }, 24 },
19 25
20 'client.dart.fyi': { 26 'client.dart.fyi': {
21 'v8-linux-release': 'gyp_release_x86_disassembler', 27 'v8-linux-release': 'gyp_release_x86_disassembler',
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 'v8_linux_mips64el_compile_rel': 'gyp_release_simulate_mips64el', 188 'v8_linux_mips64el_compile_rel': 'gyp_release_simulate_mips64el',
183 'v8_android_arm_compile_rel': 'gyp_release_android_arm', 189 'v8_android_arm_compile_rel': 'gyp_release_android_arm',
184 }, 190 },
185 }, 191 },
186 192
187 193
188 # To ease readability, config values are ordered by: 194 # To ease readability, config values are ordered by:
189 # gyp/gn, release/debug, arch type, other values alphabetically. 195 # gyp/gn, release/debug, arch type, other values alphabetically.
190 'configs': { 196 'configs': {
191 # Developer default configs. 197 # Developer default configs.
198 'default_debug_arm': [
199 'gn', 'debug', 'simulate_arm', 'v8_enable_slow_dchecks',
200 'v8_full_debug'],
201 'default_optdebug_arm': [
202 'gn', 'debug', 'simulate_arm', 'v8_enable_slow_dchecks'],
203 'default_release_arm': [
204 'gn', 'release', 'simulate_arm'],
205 'default_debug_arm64': [
206 'gn', 'debug', 'simulate_arm64', 'v8_enable_slow_dchecks',
207 'v8_full_debug'],
208 'default_optdebug_arm64': [
209 'gn', 'debug', 'simulate_arm64', 'v8_enable_slow_dchecks'],
210 'default_release_arm64': [
211 'gn', 'release', 'simulate_arm64'],
192 'default_debug_x64': [ 212 'default_debug_x64': [
193 'gn', 'debug', 'x64', 'v8_enable_slow_dchecks', 'v8_full_debug'], 213 'gn', 'debug', 'x64', 'v8_enable_slow_dchecks', 'v8_full_debug'],
194 'default_optdebug_x64': [ 214 'default_optdebug_x64': [
195 'gn', 'debug', 'x64', 'v8_enable_slow_dchecks'], 215 'gn', 'debug', 'x64', 'v8_enable_slow_dchecks'],
196 'default_release_x64': [ 216 'default_release_x64': [
197 'gn', 'release', 'x64'], 217 'gn', 'release', 'x64'],
198 'default_debug_x86': [ 218 'default_debug_x86': [
199 'gn', 'debug', 'x86', 'v8_enable_slow_dchecks', 'v8_full_debug'], 219 'gn', 'debug', 'x86', 'v8_enable_slow_dchecks', 'v8_full_debug'],
200 'default_optdebug_x86': [ 220 'default_optdebug_x86': [
201 'gn', 'debug', 'x86', 'v8_enable_slow_dchecks'], 221 'gn', 'debug', 'x86', 'v8_enable_slow_dchecks'],
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 'gn_args': 'target_cpu="x64"', 681 'gn_args': 'target_cpu="x64"',
662 'gyp_defines': 'target_arch=x64', 682 'gyp_defines': 'target_arch=x64',
663 }, 683 },
664 684
665 'x86': { 685 'x86': {
666 'gn_args': 'target_cpu="x86"', 686 'gn_args': 'target_cpu="x86"',
667 'gyp_defines': 'target_arch=ia32', 687 'gyp_defines': 'target_arch=ia32',
668 }, 688 },
669 }, 689 },
670 } 690 }
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