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

Side by Side Diff: test/fuzzers/BUILD.gn

Issue 2942613002: Fuzzing for video_coding::FrameBuffer2
Patch Set: Rebase + updated to int64_t picture ids Created 3 years, 3 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 | test/fuzzers/frame_buffer2_fuzzer.cc » ('j') | 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) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 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 import("../../webrtc.gni") 9 import("../../webrtc.gni")
10 import("//build/config/features.gni") 10 import("//build/config/features.gni")
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 "audio_processing_fuzzer.h", 369 "audio_processing_fuzzer.h",
370 "audio_processing_fuzzer_configs.cc", 370 "audio_processing_fuzzer_configs.cc",
371 ] 371 ]
372 deps = [ 372 deps = [
373 "../../api:optional", 373 "../../api:optional",
374 "../../modules:module_api", 374 "../../modules:module_api",
375 "../../modules/audio_processing", 375 "../../modules/audio_processing",
376 "../../rtc_base:rtc_base_approved", 376 "../../rtc_base:rtc_base_approved",
377 ] 377 ]
378 } 378 }
379
380 webrtc_fuzzer_test("frame_buffer2_fuzzer") {
381 sources = [
382 "frame_buffer2_fuzzer.cc",
383 ]
384 deps = [
385 "../../modules/video_coding/",
386 ]
387 libfuzzer_options = [ "max_len=10000" ]
388 }
OLDNEW
« no previous file with comments | « no previous file | test/fuzzers/frame_buffer2_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698