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

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

Issue 2604003002: MB: Enable optimize_for_fuzzing=true for libfuzzer builds. (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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 'release_bot_x64': [ 230 'release_bot_x64': [
231 'gn', 'openh264_release_bot', 'x64' 231 'gn', 'openh264_release_bot', 'x64'
232 ], 232 ],
233 'perf_release_bot_x86': [ 233 'perf_release_bot_x86': [
234 'gn', 'openh264', 'release', 'static', 'goma', 'x86' 234 'gn', 'openh264', 'release', 'static', 'goma', 'x86'
235 ], 235 ],
236 'perf_release_bot_x64': [ 236 'perf_release_bot_x64': [
237 'gn', 'openh264', 'release', 'static', 'goma', 'x64' 237 'gn', 'openh264', 'release', 'static', 'goma', 'x64'
238 ], 238 ],
239 'libfuzzer_asan_release_bot_x64': [ 239 'libfuzzer_asan_release_bot_x64': [
240 'libfuzzer', 'asan', 'openh264_release_bot', 'x64' 240 'libfuzzer', 'asan', 'optimize_for_fuzzing', 'openh264_release_bot', 'x64'
241 ], 241 ],
242 'memcheck_release_bot_x64': [ 242 'memcheck_release_bot_x64': [
243 'memcheck', 'gn', 'openh264_release_bot', 'x64' 243 'memcheck', 'gn', 'openh264_release_bot', 'x64'
244 ], 244 ],
245 245
246 # Windows 246 # Windows
247 'win_clang_debug_bot_x86': [ 247 'win_clang_debug_bot_x86': [
248 'gn', 'clang', 'openh264_debug_bot', 'x86', 248 'gn', 'clang', 'openh264_debug_bot', 'x86',
249 ], 249 ],
250 'win_clang_release_bot_x86': [ 250 'win_clang_release_bot_x86': [
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 }, 409 },
410 410
411 'openh264_debug_bot': { 411 'openh264_debug_bot': {
412 'mixins': ['openh264', 'debug_bot'], 412 'mixins': ['openh264', 'debug_bot'],
413 }, 413 },
414 414
415 'openh264_release_bot': { 415 'openh264_release_bot': {
416 'mixins': ['openh264', 'release_bot'], 416 'mixins': ['openh264', 'release_bot'],
417 }, 417 },
418 418
419 'optimize_for_fuzzing': {
420 'gn_args': 'optimize_for_fuzzing=true',
421 },
422
419 'release': { 423 'release': {
420 'gn_args': 'is_debug=false', 424 'gn_args': 'is_debug=false',
421 }, 425 },
422 426
423 'release_bot': { 427 'release_bot': {
424 'mixins': ['release', 'static', 'dcheck_always_on', 'goma'], 428 'mixins': ['release', 'static', 'dcheck_always_on', 'goma'],
425 }, 429 },
426 430
427 'shared': { 431 'shared': {
428 'gn_args': 'is_component_build=true', 432 'gn_args': 'is_component_build=true',
(...skipping 21 matching lines...) Expand all
450 454
451 'x64': { 455 'x64': {
452 'gn_args': 'target_cpu="x64"', 456 'gn_args': 'target_cpu="x64"',
453 }, 457 },
454 458
455 'x86': { 459 'x86': {
456 'gn_args': 'target_cpu="x86"', 460 'gn_args': 'target_cpu="x86"',
457 }, 461 },
458 }, 462 },
459 } 463 }
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