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

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

Issue 2870883002: MB: Add Win32 ASan bot and remove download of SyzyASan binaries. (Closed)
Patch Set: Created 3 years, 7 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 | « DEPS ('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 (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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 65
66 # Windows 66 # Windows
67 'Win32 Debug': 'debug_bot_x86', 67 'Win32 Debug': 'debug_bot_x86',
68 'Win32 Release': 'release_bot_x86', 68 'Win32 Release': 'release_bot_x86',
69 'Win64 Debug': 'debug_bot_x64', 69 'Win64 Debug': 'debug_bot_x64',
70 'Win64 Release': 'release_bot_x64', 70 'Win64 Release': 'release_bot_x64',
71 'Win32 Debug (Clang)': 'win_clang_debug_bot_x86', 71 'Win32 Debug (Clang)': 'win_clang_debug_bot_x86',
72 'Win32 Release (Clang)': 'win_clang_release_bot_x86', 72 'Win32 Release (Clang)': 'win_clang_release_bot_x86',
73 'Win64 Debug (Clang)': 'win_clang_debug_bot_x64', 73 'Win64 Debug (Clang)': 'win_clang_debug_bot_x64',
74 'Win64 Release (Clang)': 'win_clang_release_bot_x64', 74 'Win64 Release (Clang)': 'win_clang_release_bot_x64',
75 'Win SyzyASan': 'win_syzyasan_release_bot_x86', 75 'Win32 ASan': 'win_asan_clang_release_bot_x86',
76 'Win32 Release [large tests]': 'release_bot_x86', 76 'Win32 Release [large tests]': 'release_bot_x86',
77 }, 77 },
78 'client.webrtc.perf': { 78 'client.webrtc.perf': {
79 # Android 79 # Android
80 'Android32 Builder': 'perf_android_release_bot_arm', 80 'Android32 Builder': 'perf_android_release_bot_arm',
81 'Android64 Builder': 'perf_android_release_bot_arm64', 81 'Android64 Builder': 'perf_android_release_bot_arm64',
82 'Android32 Tests (J Nexus4)': 'none', 82 'Android32 Tests (J Nexus4)': 'none',
83 'Android32 Tests (K Nexus5)': 'none', 83 'Android32 Tests (K Nexus5)': 'none',
84 'Android32 Tests (L Nexus5)': 'none', 84 'Android32 Tests (L Nexus5)': 'none',
85 'Android32 Tests (L Nexus6)': 'none', 85 'Android32 Tests (L Nexus6)': 'none',
(...skipping 11 matching lines...) Expand all
97 # TODO(kjellander): Remove when bugs.webrtc.org/7090 is fixed. 97 # TODO(kjellander): Remove when bugs.webrtc.org/7090 is fixed.
98 'Linux32 Debug (ARM)': 'debug_bot_arm', 98 'Linux32 Debug (ARM)': 'debug_bot_arm',
99 'Linux64 GCC': 'gcc_release_bot_x64', 99 'Linux64 GCC': 'gcc_release_bot_x64',
100 'Linux (swarming)': 'release_bot_x64', 100 'Linux (swarming)': 'release_bot_x64',
101 101
102 # Android 102 # Android
103 'Android (swarming)': 'android_release_bot_arm', 103 'Android (swarming)': 'android_release_bot_arm',
104 'Android ASan (swarming)': 'android_asan_shared_release_bot_arm', 104 'Android ASan (swarming)': 'android_asan_shared_release_bot_arm',
105 # Windows 105 # Windows
106 'Win (swarming)': 'release_bot_x86', 106 'Win (swarming)': 'release_bot_x86',
107 'Win32 ASan (swarming)': 'win_asan_clang_release_bot_x86',
108 'Win64 Debug (Win8)': 'debug_bot_x64', 107 'Win64 Debug (Win8)': 'debug_bot_x64',
109 'Win64 Debug (Win10)': 'debug_bot_x64', 108 'Win64 Debug (Win10)': 'debug_bot_x64',
110 }, 109 },
111 'tryserver.webrtc': { 110 'tryserver.webrtc': {
112 # iOS 111 # iOS
113 'ios_dbg': 'ios', 112 'ios_dbg': 'ios',
114 'ios_rel': 'ios', 113 'ios_rel': 'ios',
115 'ios_arm64_dbg': 'ios', 114 'ios_arm64_dbg': 'ios',
116 'ios_arm64_rel': 'ios', 115 'ios_arm64_rel': 'ios',
117 'ios32_sim_ios9_dbg': 'ios', 116 'ios32_sim_ios9_dbg': 'ios',
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 'win_clang_debug_bot_x64': [ 259 'win_clang_debug_bot_x64': [
261 'gn', 'clang', 'openh264_debug_bot', 'x64', 260 'gn', 'clang', 'openh264_debug_bot', 'x64',
262 ], 261 ],
263 'win_clang_release_bot_x64': [ 262 'win_clang_release_bot_x64': [
264 'gn', 'clang', 'openh264_release_bot', 'x64', 263 'gn', 'clang', 'openh264_release_bot', 'x64',
265 ], 264 ],
266 'win_asan_clang_release_bot_x86': [ 265 'win_asan_clang_release_bot_x86': [
267 'gn', 'asan', 'clang', 'full_symbols', 'openh264_release_bot', 'x86', 266 'gn', 'asan', 'clang', 'full_symbols', 'openh264_release_bot', 'x86',
268 'win_fastlink', 267 'win_fastlink',
269 ], 268 ],
270 'win_syzyasan_release_bot_x86': [
271 'gn', 'syzyasan', 'minimal_symbols', 'openh264_release_bot', 'x86',
272 ],
273 269
274 # Mac 270 # Mac
275 'mac_asan_clang_release_bot_x64': [ 271 'mac_asan_clang_release_bot_x64': [
276 'gn', 'asan', 'clang', 'openh264_release_bot', 'x64', 272 'gn', 'asan', 'clang', 'openh264_release_bot', 'x64',
277 ], 273 ],
278 274
279 # Android 275 # Android
280 'android_debug_static_bot_arm': [ 276 'android_debug_static_bot_arm': [
281 'android', 'gn', 'debug_static_bot', 'arm' 277 'android', 'gn', 'debug_static_bot', 'arm'
282 ], 278 ],
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 }, 428 },
433 429
434 'release': { 430 'release': {
435 'gn_args': 'is_debug=false', 431 'gn_args': 'is_debug=false',
436 }, 432 },
437 433
438 'release_bot': { 434 'release_bot': {
439 'mixins': ['release', 'dcheck_always_on', 'goma'], 435 'mixins': ['release', 'dcheck_always_on', 'goma'],
440 }, 436 },
441 437
442 'syzyasan': {
443 'gn_args': 'is_syzyasan=true',
444 },
445
446 'tsan': { 438 'tsan': {
447 'gn_args': 'is_tsan=true', 439 'gn_args': 'is_tsan=true',
448 }, 440 },
449 441
450 'ubsan': { 442 'ubsan': {
451 'gn_args': 'is_ubsan=true', 443 'gn_args': 'is_ubsan=true',
452 }, 444 },
453 445
454 'ubsan_vptr': { 446 'ubsan_vptr': {
455 'gn_args': 'is_ubsan_vptr=true', 447 'gn_args': 'is_ubsan_vptr=true',
456 }, 448 },
457 449
458 'win_fastlink': { 450 'win_fastlink': {
459 'gn_args': 'is_win_fastlink=true', 451 'gn_args': 'is_win_fastlink=true',
460 }, 452 },
461 453
462 'x64': { 454 'x64': {
463 'gn_args': 'target_cpu="x64"', 455 'gn_args': 'target_cpu="x64"',
464 }, 456 },
465 457
466 'x86': { 458 'x86': {
467 'gn_args': 'target_cpu="x86"', 459 'gn_args': 'target_cpu="x86"',
468 }, 460 },
469 }, 461 },
470 } 462 }
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698