OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |