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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 | 204 |
205 webrtc_fuzzer_test("turn_unwrap_fuzzer") { | 205 webrtc_fuzzer_test("turn_unwrap_fuzzer") { |
206 sources = [ | 206 sources = [ |
207 "turn_unwrap_fuzzer.cc", | 207 "turn_unwrap_fuzzer.cc", |
208 ] | 208 ] |
209 deps = [ | 209 deps = [ |
210 "../../media:media", | 210 "../../media:media", |
211 ] | 211 ] |
212 } | 212 } |
213 | 213 |
| 214 webrtc_fuzzer_test("neteq_rtp_fuzzer") { |
| 215 sources = [ |
| 216 "neteq_rtp_fuzzer.cc", |
| 217 ] |
| 218 deps = [ |
| 219 "../../modules/audio_coding:neteq", |
| 220 "../../modules/audio_coding:neteq_unittest_tools", |
| 221 "../../modules/audio_coding:pcm16b", |
| 222 "../../modules/rtp_rtcp", |
| 223 ] |
| 224 } |
| 225 |
214 webrtc_fuzzer_test("sdp_parser_fuzzer") { | 226 webrtc_fuzzer_test("sdp_parser_fuzzer") { |
215 sources = [ | 227 sources = [ |
216 "sdp_parser_fuzzer.cc", | 228 "sdp_parser_fuzzer.cc", |
217 ] | 229 ] |
218 deps = [ | 230 deps = [ |
219 "../../api:libjingle_peerconnection", | 231 "../../api:libjingle_peerconnection", |
220 ] | 232 ] |
221 seed_corpus = "corpora/sdp-corpus" | 233 seed_corpus = "corpora/sdp-corpus" |
222 } | 234 } |
223 | 235 |
(...skipping 20 matching lines...) Expand all Loading... |
244 } | 256 } |
245 | 257 |
246 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { | 258 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { |
247 sources = [ | 259 sources = [ |
248 "pseudotcp_parser_fuzzer.cc", | 260 "pseudotcp_parser_fuzzer.cc", |
249 ] | 261 ] |
250 deps = [ | 262 deps = [ |
251 "../../p2p:rtc_p2p", | 263 "../../p2p:rtc_p2p", |
252 ] | 264 ] |
253 } | 265 } |
OLD | NEW |