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

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

Issue 2836873002: rtc_include_tests=false in libfuzzer bot (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 | « 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 'win_asan': 'win_syzyasan_release_bot_x86', 177 'win_asan': 'win_syzyasan_release_bot_x86',
178 'win_baremetal': 'release_bot_x86', 178 'win_baremetal': 'release_bot_x86',
179 'win_x64_win8': 'debug_bot_x64', 179 'win_x64_win8': 'debug_bot_x64',
180 'win_x64_win10': 'debug_bot_x64', 180 'win_x64_win10': 'debug_bot_x64',
181 } 181 }
182 }, 182 },
183 183
184 # This is the list of configs that you can pass to mb; each config 184 # This is the list of configs that you can pass to mb; each config
185 # represents a particular combination of gn args that we must support. 185 # represents a particular combination of gn args that we must support.
186 # A given config *may* be platform-specific but is not necessarily so (i.e., 186 # A given config *may* be platform-specific but is not necessarily so (i.e.,
187 # we might have mac, win, and linux bots all using the 'release_bot' config). 187 # we might have mac, win, and linux bots all using the 'release_bot' config).
188 'configs': { 188 'configs': {
189 # Linux, Mac and Windows 189 # Linux, Mac and Windows
190 'gcc_release_bot_x64': [ 190 'gcc_release_bot_x64': [
191 'gn', 'gcc', 'release_bot', 'x64' 191 'gn', 'gcc', 'release_bot', 'x64'
192 ], 192 ],
193 'debug_bot_arm': [ 193 'debug_bot_arm': [
194 'gn', 'openh264_debug_bot', 'arm' 194 'gn', 'openh264_debug_bot', 'arm'
195 ], 195 ],
196 'release_bot_arm': [ 196 'release_bot_arm': [
197 'gn', 'openh264_release_bot', 'arm' 197 'gn', 'openh264_release_bot', 'arm'
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 'release_bot_x64': [ 229 'release_bot_x64': [
230 'gn', 'openh264_release_bot', 'x64' 230 'gn', 'openh264_release_bot', 'x64'
231 ], 231 ],
232 'perf_release_bot_x86': [ 232 'perf_release_bot_x86': [
233 'gn', 'openh264', 'release', 'goma', 'x86' 233 'gn', 'openh264', 'release', 'goma', 'x86'
234 ], 234 ],
235 'perf_release_bot_x64': [ 235 'perf_release_bot_x64': [
236 'gn', 'openh264', 'release', 'goma', 'x64' 236 'gn', 'openh264', 'release', 'goma', 'x64'
237 ], 237 ],
238 'libfuzzer_asan_release_bot_x64': [ 238 'libfuzzer_asan_release_bot_x64': [
239 'libfuzzer', 'asan', 'optimize_for_fuzzing', 'openh264_release_bot', 'x64' 239 'libfuzzer', 'asan', 'optimize_for_fuzzing', 'openh264_release_bot',
240 'x64', 'no_rtc_tests'
240 ], 241 ],
241 'memcheck_release_bot_x64': [ 242 'memcheck_release_bot_x64': [
242 'memcheck', 'gn', 'openh264_release_bot', 'x64' 243 'memcheck', 'gn', 'openh264_release_bot', 'x64'
243 ], 244 ],
244 245
245 # iOS 246 # iOS
246 # The 'ios' config is just used for auditing. iOS bots 247 # The 'ios' config is just used for auditing. iOS bots
247 # use the ios recipes and look up their GN arguments via files checked in 248 # use the ios recipes and look up their GN arguments via files checked in
248 # under //tools-webrtc/ios/bots. It is an error to actually use one of these 249 # under //tools-webrtc/ios/bots. It is an error to actually use one of these
249 # configs to generate the build files. 250 # configs to generate the build files.
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 403
403 'minimal_symbols': { 404 'minimal_symbols': {
404 'gn_args': 'symbol_level=1', 405 'gn_args': 'symbol_level=1',
405 }, 406 },
406 407
407 'msan': { 408 'msan': {
408 'gn_args': ('is_msan=true msan_track_origins=2 ' 409 'gn_args': ('is_msan=true msan_track_origins=2 '
409 'use_prebuilt_instrumented_libraries=true'), 410 'use_prebuilt_instrumented_libraries=true'),
410 }, 411 },
411 412
413 'no_rtc_tests': {
414 'gn_args': 'rtc_include_tests=false',
415 },
416
412 'openh264': { 417 'openh264': {
413 'gn_args': 'ffmpeg_branding="Chrome" rtc_use_h264=true', 418 'gn_args': 'ffmpeg_branding="Chrome" rtc_use_h264=true',
414 }, 419 },
415 420
416 'openh264_debug_bot': { 421 'openh264_debug_bot': {
417 'mixins': ['openh264', 'debug_bot'], 422 'mixins': ['openh264', 'debug_bot'],
418 }, 423 },
419 424
420 'openh264_release_bot': { 425 'openh264_release_bot': {
421 'mixins': ['openh264', 'release_bot'], 426 'mixins': ['openh264', 'release_bot'],
(...skipping 29 matching lines...) Expand all
451 456
452 'x64': { 457 'x64': {
453 'gn_args': 'target_cpu="x64"', 458 'gn_args': 'target_cpu="x64"',
454 }, 459 },
455 460
456 'x86': { 461 'x86': {
457 'gn_args': 'target_cpu="x86"', 462 'gn_args': 'target_cpu="x86"',
458 }, 463 },
459 }, 464 },
460 } 465 }
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