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

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

Issue 1518973003: Add VP8 and H264 depacketizer fuzzers. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years 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 | « webrtc/BUILD.gn ('k') | webrtc/test/fuzzers/h264_depacketizer_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("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("webrtc_fuzzer.gni") 10 import("webrtc_fuzzer.gni")
11 11
12 static_library("webrtc_fuzzer_main") { 12 static_library("webrtc_fuzzer_main") {
13 public_configs = [ "../..:common_inherited_config" ] 13 public_configs = [ "../..:common_inherited_config" ]
14 sources = [ 14 sources = [
15 "webrtc_fuzzer_main.cc", 15 "webrtc_fuzzer_main.cc",
16 ] 16 ]
17 deps = [ 17 deps = [
18 "../../system_wrappers:field_trial_default", 18 "../../system_wrappers:field_trial_default",
19 "../../system_wrappers:metrics_default", 19 "../../system_wrappers:metrics_default",
20 "//testing/libfuzzer:libfuzzer_main", 20 "//testing/libfuzzer:libfuzzer_main",
21 ] 21 ]
22 } 22 }
23 23
24 webrtc_fuzzer_test("h264_depacketizer_fuzzer") {
25 sources = [
26 "h264_depacketizer_fuzzer.cc",
27 ]
28 deps = [
29 "../../modules/rtp_rtcp",
30 ]
31 }
32
33 webrtc_fuzzer_test("vp8_depacketizer_fuzzer") {
34 sources = [
35 "vp8_depacketizer_fuzzer.cc",
36 ]
37 deps = [
38 "../../modules/rtp_rtcp",
39 ]
40 }
41
24 webrtc_fuzzer_test("vp9_depacketizer_fuzzer") { 42 webrtc_fuzzer_test("vp9_depacketizer_fuzzer") {
25 sources = [ 43 sources = [
26 "vp9_depacketizer_fuzzer.cc", 44 "vp9_depacketizer_fuzzer.cc",
27 ] 45 ]
28 deps = [ 46 deps = [
29 "../../modules/rtp_rtcp", 47 "../../modules/rtp_rtcp",
30 ] 48 ]
31 } 49 }
32 50
33 webrtc_fuzzer_test("vp8_qp_parser_fuzzer") { 51 webrtc_fuzzer_test("vp8_qp_parser_fuzzer") {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 106
89 webrtc_fuzzer_test("audio_decoder_opus_fuzzer") { 107 webrtc_fuzzer_test("audio_decoder_opus_fuzzer") {
90 sources = [ 108 sources = [
91 "audio_decoder_opus_fuzzer.cc", 109 "audio_decoder_opus_fuzzer.cc",
92 ] 110 ]
93 deps = [ 111 deps = [
94 ":audio_decoder_fuzzer", 112 ":audio_decoder_fuzzer",
95 "../../modules/audio_coding:webrtc_opus", 113 "../../modules/audio_coding:webrtc_opus",
96 ] 114 ]
97 } 115 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/test/fuzzers/h264_depacketizer_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698