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

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

Issue 2973463003: Override bots to use libstdc++ on Linux (Closed)
Patch Set: Created 3 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 (c) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 # FOR DETAILS ON THIS FILE SEE THE MAIN COPY IN //tools/mb/mb_config.pyl. 9 # FOR DETAILS ON THIS FILE SEE THE MAIN COPY IN //tools/mb/mb_config.pyl.
10 # This is configuration for standalone WebRTC bots. It is used to keep the bot 10 # This is configuration for standalone WebRTC bots. It is used to keep the bot
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 } 193 }
194 }, 194 },
195 195
196 # This is the list of configs that you can pass to mb; each config 196 # This is the list of configs that you can pass to mb; each config
197 # represents a particular combination of gn args that we must support. 197 # represents a particular combination of gn args that we must support.
198 # A given config *may* be platform-specific but is not necessarily so (i.e., 198 # A given config *may* be platform-specific but is not necessarily so (i.e.,
199 # we might have mac, win, and linux bots all using the 'release_bot' config). 199 # we might have mac, win, and linux bots all using the 'release_bot' config).
200 'configs': { 200 'configs': {
201 # Linux, Mac and Windows 201 # Linux, Mac and Windows
202 'gcc_release_bot_x64': [ 202 'gcc_release_bot_x64': [
203 'gn', 'gcc', 'release_bot', 'x64', 'no_rtc_tests' 203 'gn', 'gcc', 'release_bot', 'x64', 'no_rtc_tests', 'use_default_libcxx'
204 ], 204 ],
205 # TOOD(kjellander): Restore Goma for this when crbug.com/726706 is fixed. 205 # TOOD(kjellander): Restore Goma for this when crbug.com/726706 is fixed.
206 'debug_bot_arm': [ 206 'debug_bot_arm': [
207 'gn', 'openh264', 'debug', 'arm' 207 'gn', 'openh264', 'debug', 'arm'
208 ], 208 ],
209 'release_bot_arm': [ 209 'release_bot_arm': [
210 'gn', 'openh264_release_bot', 'arm' 210 'gn', 'openh264_release_bot', 'arm'
211 ], 211 ],
212 'debug_bot_arm64': [ 212 'debug_bot_arm64': [
213 'gn', 'openh264_debug_bot', 'arm64' 213 'gn', 'openh264_debug_bot', 'arm64'
214 ], 214 ],
215 'release_bot_arm64': [ 215 'release_bot_arm64': [
216 'gn', 'openh264_release_bot', 'arm64' 216 'gn', 'openh264_release_bot', 'arm64'
217 ], 217 ],
218 'asan_lsan_clang_release_bot_x64': [ 218 'asan_lsan_clang_release_bot_x64': [
219 'gn', 'asan', 'lsan', 'clang', 'openh264_release_bot', 'x64' 219 'gn', 'asan', 'lsan', 'clang', 'openh264_release_bot', 'x64'
220 ], 220 ],
221 'msan_clang_release_bot_x64': [ 221 'msan_clang_release_bot_x64': [
222 'gn', 'msan', 'clang', 'openh264_release_bot', 'x64' 222 'gn', 'msan', 'clang', 'openh264_release_bot', 'x64'
223 ], 223 ],
224 'tsan_clang_release_bot_x64': [ 224 'tsan_clang_release_bot_x64': [
225 'gn', 'tsan', 'clang', 'openh264_release_bot', 'x64' 225 'gn', 'tsan', 'clang', 'openh264_release_bot', 'x64'
226 ], 226 ],
227 'ubsan_clang_release_bot_x64': [ 227 'ubsan_clang_release_bot_x64': [
228 'gn', 'ubsan', 'clang', 'openh264_release_bot', 'x64' 228 'gn', 'ubsan', 'clang', 'openh264_release_bot', 'x64'
229 ], 229 ],
230 'ubsan_vptr_clang_release_bot_x64': [ 230 'ubsan_vptr_clang_release_bot_x64': [
231 'gn', 'ubsan_vptr', 'clang', 'openh264_release_bot', 'x64' 231 'gn', 'ubsan_vptr', 'clang', 'openh264_release_bot', 'x64',
232 'use_default_libcxx'
232 ], 233 ],
233 'debug_bot_x86': [ 234 'debug_bot_x86': [
234 'gn', 'openh264_debug_bot', 'x86' 235 'gn', 'openh264_debug_bot', 'x86'
235 ], 236 ],
236 'release_bot_x86': [ 237 'release_bot_x86': [
237 'gn', 'openh264_release_bot', 'x86' 238 'gn', 'openh264_release_bot', 'x86'
238 ], 239 ],
239 'debug_bot_x64': [ 240 'debug_bot_x64': [
240 'gn', 'openh264_debug_bot', 'x64' 241 'gn', 'openh264_debug_bot', 'x64'
241 ], 242 ],
242 'codesearch_gen_linux_bot': [ 243 'codesearch_gen_linux_bot': [
243 'gn', 'openh264_debug_bot', 'minimal_symbols' 244 'gn', 'openh264_debug_bot', 'minimal_symbols'
244 ], 245 ],
245 'release_bot_x64': [ 246 'release_bot_x64': [
246 'gn', 'openh264_release_bot', 'x64' 247 'gn', 'openh264_release_bot', 'x64'
247 ], 248 ],
248 'perf_release_bot_x86': [ 249 'perf_release_bot_x86': [
249 'gn', 'openh264', 'release', 'goma', 'x86' 250 'gn', 'openh264', 'release', 'goma', 'x86'
250 ], 251 ],
251 'perf_release_bot_x64': [ 252 'perf_release_bot_x64': [
252 'gn', 'openh264', 'release', 'goma', 'x64' 253 'gn', 'openh264', 'release', 'goma', 'x64'
253 ], 254 ],
254 'libfuzzer_asan_release_bot_x64': [ 255 'libfuzzer_asan_release_bot_x64': [
255 'libfuzzer', 'asan', 'optimize_for_fuzzing', 'openh264_release_bot', 256 'libfuzzer', 'asan', 'optimize_for_fuzzing', 'openh264_release_bot',
256 'x64', 'no_rtc_tests' 257 'x64', 'no_rtc_tests'
257 ], 258 ],
258 'memcheck_release_bot_x64': [ 259 'memcheck_release_bot_x64': [
259 'memcheck', 'gn', 'openh264_release_bot', 'x64' 260 'memcheck', 'gn', 'openh264_release_bot', 'x64', 'use_default_libcxx'
260 ], 261 ],
261 262
262 # iOS 263 # iOS
263 # The 'ios' config is just used for auditing. iOS bots 264 # The 'ios' config is just used for auditing. iOS bots
264 # use the ios recipes and look up their GN arguments via files checked in 265 # use the ios recipes and look up their GN arguments via files checked in
265 # under //tools_webrtc/ios/bots. It is an error to actually use one of these 266 # under //tools_webrtc/ios/bots. It is an error to actually use one of these
266 # configs to generate the build files. 267 # configs to generate the build files.
267 'ios': [ 'error'], 268 'ios': [ 'error'],
268 269
269 # Windows 270 # Windows
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 'gn_args': 'is_win_fastlink=true', 466 'gn_args': 'is_win_fastlink=true',
466 }, 467 },
467 468
468 'x64': { 469 'x64': {
469 'gn_args': 'target_cpu="x64"', 470 'gn_args': 'target_cpu="x64"',
470 }, 471 },
471 472
472 'x86': { 473 'x86': {
473 'gn_args': 'target_cpu="x86"', 474 'gn_args': 'target_cpu="x86"',
474 }, 475 },
476
477 'use_default_libcxx': {
478 'gn_args': 'use_custom_libcxx=false',
479 }
475 }, 480 },
476 } 481 }
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