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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") { | 177 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") { |
178 sources = [ | 178 sources = [ |
179 "audio_decoder_opus_redundant_fuzzer.cc", | 179 "audio_decoder_opus_redundant_fuzzer.cc", |
180 ] | 180 ] |
181 deps = [ | 181 deps = [ |
182 ":audio_decoder_fuzzer", | 182 ":audio_decoder_fuzzer", |
183 "../../modules/audio_coding:webrtc_opus", | 183 "../../modules/audio_coding:webrtc_opus", |
184 ] | 184 ] |
185 } | 185 } |
186 | 186 |
187 # TODO(katrielc) Enable in Chromium when CL 2022833002 lands. | 187 webrtc_fuzzer_test("turn_unwrap_fuzzer") { |
188 # Although the dependency on media compiles in standalone, it is | 188 sources = [ |
189 # flagged by gn check, so breaks when rolled into Chromium. | 189 "turn_unwrap_fuzzer.cc", |
190 if (!build_with_chromium) { | 190 ] |
191 webrtc_fuzzer_test("turn_unwrap_fuzzer") { | 191 deps = [ |
192 sources = [ | 192 "../../media:media", |
193 "turn_unwrap_fuzzer.cc", | 193 ] |
194 ] | 194 } |
195 deps = [ | |
196 "../../media:media", | |
197 ] | |
198 } | |
199 | 195 |
200 webrtc_fuzzer_test("sdp_parser_fuzzer") { | 196 webrtc_fuzzer_test("sdp_parser_fuzzer") { |
201 sources = [ | 197 sources = [ |
202 "sdp_parser_fuzzer.cc", | 198 "sdp_parser_fuzzer.cc", |
203 ] | 199 ] |
204 deps = [ | 200 deps = [ |
205 "../../api:libjingle_peerconnection", | 201 "../../api:libjingle_peerconnection", |
206 ] | 202 ] |
207 seed_corpus = "corpora/sdp-corpus" | 203 seed_corpus = "corpora/sdp-corpus" |
208 } | 204 } |
209 | 205 |
210 webrtc_fuzzer_test("stun_parser_fuzzer") { | 206 webrtc_fuzzer_test("stun_parser_fuzzer") { |
211 sources = [ | 207 sources = [ |
212 "stun_parser_fuzzer.cc", | 208 "stun_parser_fuzzer.cc", |
213 ] | 209 ] |
214 deps = [ | 210 deps = [ |
215 "../../p2p:rtc_p2p", | 211 "../../p2p:rtc_p2p", |
216 ] | 212 ] |
217 seed_corpus = "corpora/stun-corpus" | 213 seed_corpus = "corpora/stun-corpus" |
218 dict = "corpora/stun.tokens" | 214 dict = "corpora/stun.tokens" |
219 } | 215 } |
220 | 216 |
221 webrtc_fuzzer_test("stun_validator_fuzzer") { | 217 webrtc_fuzzer_test("stun_validator_fuzzer") { |
222 sources = [ | 218 sources = [ |
223 "stun_validator_fuzzer.cc", | 219 "stun_validator_fuzzer.cc", |
224 ] | 220 ] |
225 deps = [ | 221 deps = [ |
226 "../../p2p:rtc_p2p", | 222 "../../p2p:rtc_p2p", |
227 ] | 223 ] |
228 seed_corpus = "corpora/stun-corpus" | 224 seed_corpus = "corpora/stun-corpus" |
229 dict = "corpora/stun.tokens" | 225 dict = "corpora/stun.tokens" |
230 } | 226 } |
231 | 227 |
232 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { | 228 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { |
233 sources = [ | 229 sources = [ |
234 "pseudotcp_parser_fuzzer.cc", | 230 "pseudotcp_parser_fuzzer.cc", |
235 ] | 231 ] |
236 deps = [ | 232 deps = [ |
237 "../../p2p:rtc_p2p", | 233 "../../p2p:rtc_p2p", |
238 ] | 234 ] |
239 } | |
240 } | 235 } |
OLD | NEW |