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

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

Issue 2072833004: [mb] Fix typo in mb config (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 'gyp_defines': 'test_isolation_mode=prepare', 105 'gyp_defines': 'test_isolation_mode=prepare',
106 }, 106 },
107 107
108 'valgrind': { 108 'valgrind': {
109 # TODO(machenbach): Add this to gn. 109 # TODO(machenbach): Add this to gn.
110 'gn_args': 'has_valgrind=true', 110 'gn_args': 'has_valgrind=true',
111 'gyp_defines': 'has_valgrind=1', 111 'gyp_defines': 'has_valgrind=1',
112 }, 112 },
113 113
114 'v8_enable_slow_dchecks': { 114 'v8_enable_slow_dchecks': {
115 'gn_args': v8_enable_slow_dchecks=true', 115 'gn_args': 'v8_enable_slow_dchecks=true',
116 'gyp_defines': 'v8_enable_slow_dchecks=1', 116 'gyp_defines': 'v8_enable_slow_dchecks=1',
117 }, 117 },
118 118
119 'v8_optimized_debug': { 119 'v8_optimized_debug': {
120 # This is the default in gn for debug. 120 # This is the default in gn for debug.
121 'gyp_defines': 'v8_optimized_debug=1', 121 'gyp_defines': 'v8_optimized_debug=1',
122 }, 122 },
123 123
124 'v8_snapshot_custom': { 124 'v8_snapshot_custom': {
125 # TODO(machenbach): Add this to gn. 125 # TODO(machenbach): Add this to gn.
(...skipping 10 matching lines...) Expand all
136 'gn_args': 'target_cpu="x64"', 136 'gn_args': 'target_cpu="x64"',
137 'gyp_defines': 'target_arch=x64', 137 'gyp_defines': 'target_arch=x64',
138 }, 138 },
139 139
140 'x86': { 140 'x86': {
141 'gn_args': 'target_cpu="x86"', 141 'gn_args': 'target_cpu="x86"',
142 'gyp_defines': 'target_arch=ia32', 142 'gyp_defines': 'target_arch=ia32',
143 }, 143 },
144 }, 144 },
145 } 145 }
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