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

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

Issue 1170063002: Add mb config for CrWinClang64(dbg). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 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 | « testing/buildbot/chromium.fyi.json ('k') | 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium 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 the list of configs that you can pass to mb; each config 6 # This is the list of configs that you can pass to mb; each config
7 # represents a particular combination of GYP_DEFINES/gn args that 7 # represents a particular combination of GYP_DEFINES/gn args that
8 # we must support. A given config *may* be platform-specific but 8 # we must support. A given config *may* be platform-specific but
9 # is not necessarily so (i.e., we might have mac, win, and linux 9 # is not necessarily so (i.e., we might have mac, win, and linux
10 # bots all using the 'gn_release_bot' config). 10 # bots all using the 'gn_release_bot' config).
(...skipping 12 matching lines...) Expand all
23 'dev_gyp_release': ['gyp', 'release', 'shared'], 23 'dev_gyp_release': ['gyp', 'release', 'shared'],
24 'gn_release_bot': ['gn', 'release_bot'], 24 'gn_release_bot': ['gn', 'release_bot'],
25 'gn_release_bot_x86': ['gn', 'release_bot', 'x86'], 25 'gn_release_bot_x86': ['gn', 'release_bot', 'x86'],
26 'gn_release_trybot': ['gn', 'release_trybot'], 26 'gn_release_trybot': ['gn', 'release_trybot'],
27 'gn_release_trybot_x86': ['gn', 'release_trybot', 'x86'], 27 'gn_release_trybot_x86': ['gn', 'release_trybot', 'x86'],
28 'gn_debug_bot': ['gn', 'debug_bot'], 28 'gn_debug_bot': ['gn', 'debug_bot'],
29 'gn_debug_bot_x86': ['gn', 'debug_bot', 'x86'], 29 'gn_debug_bot_x86': ['gn', 'debug_bot', 'x86'],
30 'gn_debug_static_bot': ['gn', 'debug_static_bot'], 30 'gn_debug_static_bot': ['gn', 'debug_static_bot'],
31 'gn_debug_static_bot_x86': ['gn', 'debug_static_bot', 'x86'], 31 'gn_debug_static_bot_x86': ['gn', 'debug_static_bot', 'x86'],
32 'gyp_release_bot': ['gyp', 'release_bot'], 32 'gyp_release_bot': ['gyp', 'release_bot'],
33 'win_clang_debug_bot':
34 ['gn', 'clang', 'debug', 'shared', 'minimal_symbols'],
Dirk Pranke 2015/06/09 01:14:52 The style rules for this file aren't set in stone,
Nico 2015/06/09 01:19:24 debug_bot also enables goma from what I understand
33 }, 35 },
34 36
35 # This is a list of configs that do not actually exist on any bot 37 # This is a list of configs that do not actually exist on any bot
36 # but are used so commonly by devs that we must support them. 38 # but are used so commonly by devs that we must support them.
37 'common_dev_configs': [ 39 'common_dev_configs': [
38 'dev_gn_debug', 40 'dev_gn_debug',
39 'dev_gn_release', 41 'dev_gn_release',
40 'dev_gyp_debug', 42 'dev_gyp_debug',
41 'dev_gyp_release', 43 'dev_gyp_release',
42 ], 44 ],
(...skipping 18 matching lines...) Expand all
61 'android': { 63 'android': {
62 'gn_args': 'target_os="android"', 64 'gn_args': 'target_os="android"',
63 'gyp_defines': 'OS=android', 65 'gyp_defines': 'OS=android',
64 }, 66 },
65 67
66 'chromeos': { 68 'chromeos': {
67 'gn_args': 'target_os="chromeos"', 69 'gn_args': 'target_os="chromeos"',
68 'gyp_defines': 'chromeos=1', 70 'gyp_defines': 'chromeos=1',
69 }, 71 },
70 72
73 'clang': {
74 'gn_args': 'is_clang=true',
75 'gyp_defines': 'clang=1',
76 },
77
71 'dcheck_always_on': { 78 'dcheck_always_on': {
72 'gn_args': 'dcheck_always_on=true', 79 'gn_args': 'dcheck_always_on=true',
73 'gyp_defines': 'dcheck_always_on=1', 80 'gyp_defines': 'dcheck_always_on=1',
74 }, 81 },
75 82
76 'debug': { 83 'debug': {
77 'gn_args': 'is_debug=true', 84 'gn_args': 'is_debug=true',
78 'gyp_config': 'Debug', 85 'gyp_config': 'Debug',
79 }, 86 },
80 87
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 'Win x64 GN (dbg)': 'gn_debug_bot', 167 'Win x64 GN (dbg)': 'gn_debug_bot',
161 'Win8 GN': 'gn_release_bot_x86', 168 'Win8 GN': 'gn_release_bot_x86',
162 'Win8 GN (dbg)': 'gn_debug_bot_x86', 169 'Win8 GN (dbg)': 'gn_debug_bot_x86',
163 }, 170 },
164 'chromium.webkit': { 171 'chromium.webkit': {
165 'Android GN': 'android_gn_release_bot', 172 'Android GN': 'android_gn_release_bot',
166 'Android GN (dbg)': 'android_gn_debug_bot', 173 'Android GN (dbg)': 'android_gn_debug_bot',
167 'Linux GN': 'gn_release_bot', 174 'Linux GN': 'gn_release_bot',
168 'Linux GN (dbg)': 'gn_debug_bot' 175 'Linux GN (dbg)': 'gn_debug_bot'
169 }, 176 },
177 'chromium.fyi': {
178 'CrWinClang64(dbg)': 'win_clang_debug_bot',
179 },
Dirk Pranke 2015/06/09 01:14:52 and then rename this to just 'gn_clang_debug_bot'.
170 'chromium.webrtc.fyi': { 180 'chromium.webrtc.fyi': {
171 'Android GN': 'android_gn_release_bot', 181 'Android GN': 'android_gn_release_bot',
172 'Android GN (dbg)': 'android_gn_debug_bot', 182 'Android GN (dbg)': 'android_gn_debug_bot',
173 'Linux GN': 'gn_release_bot', 183 'Linux GN': 'gn_release_bot',
174 'Linux GN (dbg)': 'gn_debug_bot', 184 'Linux GN (dbg)': 'gn_debug_bot',
175 'Mac GN': 'gn_release_bot', 185 'Mac GN': 'gn_release_bot',
176 'Mac GN (dbg)': 'gn_debug_static_bot', 186 'Mac GN (dbg)': 'gn_debug_static_bot',
177 'Win GN': 'gn_release_bot_x86', 187 'Win GN': 'gn_release_bot_x86',
178 'Win GN (dbg)': 'gn_debug_static_bot_x86', 188 'Win GN (dbg)': 'gn_debug_static_bot_x86',
179 }, 189 },
(...skipping 29 matching lines...) Expand all
209 'win8_chromium_gn_dbg': 'gn_debug_static_bot_x86', 219 'win8_chromium_gn_dbg': 'gn_debug_static_bot_x86',
210 'win8_chromium_gn_rel': 'gn_release_trybot_x86', 220 'win8_chromium_gn_rel': 'gn_release_trybot_x86',
211 'win8_chromium_gn_upload': 'gn_release_bot', 221 'win8_chromium_gn_upload': 'gn_release_bot',
212 }, 222 },
213 'tryserver.v8': { 223 'tryserver.v8': {
214 'v8_linux_chromium_gn_rel': 'gn_release_trybot', 224 'v8_linux_chromium_gn_rel': 'gn_release_trybot',
215 'v8_android_chromium_gn_dbg': 'android_gn_debug_bot', 225 'v8_android_chromium_gn_dbg': 'android_gn_debug_bot',
216 }, 226 },
217 }, 227 },
218 } 228 }
OLDNEW
« no previous file with comments | « testing/buildbot/chromium.fyi.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698