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("//build_overrides/webrtc.gni") | 10 import("//build_overrides/webrtc.gni") |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 webrtc_fuzzer_test("stun_validator_fuzzer") { | 214 webrtc_fuzzer_test("stun_validator_fuzzer") { |
215 sources = [ | 215 sources = [ |
216 "stun_validator_fuzzer.cc", | 216 "stun_validator_fuzzer.cc", |
217 ] | 217 ] |
218 deps = [ | 218 deps = [ |
219 "../../p2p:rtc_p2p", | 219 "../../p2p:rtc_p2p", |
220 ] | 220 ] |
221 seed_corpus = "corpora/stun-corpus" | 221 seed_corpus = "corpora/stun-corpus" |
222 dict = "corpora/stun.tokens" | 222 dict = "corpora/stun.tokens" |
223 } | 223 } |
| 224 |
| 225 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { |
| 226 sources = [ |
| 227 "pseudotcp_parser_fuzzer.cc", |
| 228 ] |
| 229 deps = [ |
| 230 "../../p2p:rtc_p2p", |
| 231 ] |
| 232 } |
224 } | 233 } |
OLD | NEW |