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

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

Issue 2604163002: MB: Add symbol_level=2 to new Win ASan bot. (Closed)
Patch Set: Created 3 years, 11 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 'win_clang_release_bot_x86': [ 250 'win_clang_release_bot_x86': [
251 'gn', 'clang', 'openh264_release_bot', 'x86', 251 'gn', 'clang', 'openh264_release_bot', 'x86',
252 ], 252 ],
253 'win_clang_debug_bot_x64': [ 253 'win_clang_debug_bot_x64': [
254 'gn', 'clang', 'openh264_debug_bot', 'x64', 254 'gn', 'clang', 'openh264_debug_bot', 'x64',
255 ], 255 ],
256 'win_clang_release_bot_x64': [ 256 'win_clang_release_bot_x64': [
257 'gn', 'clang', 'openh264_release_bot', 'x64', 257 'gn', 'clang', 'openh264_release_bot', 'x64',
258 ], 258 ],
259 'win_asan_clang_release_bot_x86': [ 259 'win_asan_clang_release_bot_x86': [
260 'gn', 'asan', 'clang', 'openh264_release_bot', 'x86', 260 'gn', 'asan', 'clang', 'full_symbols', 'openh264_release_bot', 'x86',
261 ], 261 ],
262 'win_syzyasan_release_bot_x86': [ 262 'win_syzyasan_release_bot_x86': [
263 'gn', 'syzyasan', 'minimal_symbols', 'openh264_release_bot', 'x86', 263 'gn', 'syzyasan', 'minimal_symbols', 'openh264_release_bot', 'x86',
264 ], 264 ],
265 265
266 # Mac 266 # Mac
267 'mac_asan_clang_release_bot_x64': [ 267 'mac_asan_clang_release_bot_x64': [
268 'gn', 'asan', 'clang', 'openh264_release_bot', 'x64', 268 'gn', 'asan', 'clang', 'openh264_release_bot', 'x64',
269 ], 269 ],
270 270
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 }, 357 },
358 358
359 # This mixin is used to force configs that use it to fail. It 359 # This mixin is used to force configs that use it to fail. It
360 # is used in two cases: when we have bots that we haven't looked 360 # is used in two cases: when we have bots that we haven't looked
361 # at yet and don't know whether they need MB or not, and for bots 361 # at yet and don't know whether they need MB or not, and for bots
362 # that are test-only and should never run MB. 362 # that are test-only and should never run MB.
363 'error': { 363 'error': {
364 'gn_args': 'error', 364 'gn_args': 'error',
365 }, 365 },
366 366
367 'full_symbols': {
368 'gn_args': 'symbol_level=2',
369 },
370
367 'gcc': { 371 'gcc': {
368 'gn_args': 'is_clang=false use_sysroot=false', 372 'gn_args': 'is_clang=false use_sysroot=false',
369 }, 373 },
370 374
371 'gn': {'type': 'gn'}, 375 'gn': {'type': 'gn'},
372 376
373 'goma': { 377 'goma': {
374 'gn_args': 'use_goma=true', 378 'gn_args': 'use_goma=true',
375 }, 379 },
376 380
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 457
454 'x64': { 458 'x64': {
455 'gn_args': 'target_cpu="x64"', 459 'gn_args': 'target_cpu="x64"',
456 }, 460 },
457 461
458 'x86': { 462 'x86': {
459 'gn_args': 'target_cpu="x86"', 463 'gn_args': 'target_cpu="x86"',
460 }, 464 },
461 }, 465 },
462 } 466 }
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