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/webrtc.gni") | 9 import("../../build/webrtc.gni") |
10 import("//build/config/features.gni") | 10 import("//build/config/features.gni") |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 | 89 |
90 webrtc_fuzzer_test("producer_fec_fuzzer") { | 90 webrtc_fuzzer_test("producer_fec_fuzzer") { |
91 sources = [ | 91 sources = [ |
92 "producer_fec_fuzzer.cc", | 92 "producer_fec_fuzzer.cc", |
93 ] | 93 ] |
94 deps = [ | 94 deps = [ |
95 "../../modules/rtp_rtcp/", | 95 "../../modules/rtp_rtcp/", |
96 ] | 96 ] |
97 } | 97 } |
98 | 98 |
| 99 webrtc_fuzzer_test("flexfec_receiver_fuzzer") { |
| 100 sources = [ |
| 101 "flexfec_receiver_fuzzer.cc", |
| 102 ] |
| 103 deps = [ |
| 104 "../../modules/rtp_rtcp/", |
| 105 ] |
| 106 libfuzzer_options = [ "max_len=2000" ] |
| 107 } |
| 108 |
99 webrtc_fuzzer_test("rtcp_receiver_fuzzer") { | 109 webrtc_fuzzer_test("rtcp_receiver_fuzzer") { |
100 sources = [ | 110 sources = [ |
101 "rtcp_receiver_fuzzer.cc", | 111 "rtcp_receiver_fuzzer.cc", |
102 ] | 112 ] |
103 deps = [ | 113 deps = [ |
104 "../../modules/rtp_rtcp/", | 114 "../../modules/rtp_rtcp/", |
105 ] | 115 ] |
106 seed_corpus = "corpora/rtcp-corpus" | 116 seed_corpus = "corpora/rtcp-corpus" |
107 } | 117 } |
108 | 118 |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 } | 266 } |
257 | 267 |
258 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { | 268 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { |
259 sources = [ | 269 sources = [ |
260 "pseudotcp_parser_fuzzer.cc", | 270 "pseudotcp_parser_fuzzer.cc", |
261 ] | 271 ] |
262 deps = [ | 272 deps = [ |
263 "../../p2p:rtc_p2p", | 273 "../../p2p:rtc_p2p", |
264 ] | 274 ] |
265 } | 275 } |
OLD | NEW |