Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(614)

Unified Diff: webrtc/test/fuzzers/BUILD.gn

Issue 2117183005: Reland of https://codereview.webrtc.org/2044523002. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/test/fuzzers/sdp_parser_fuzzer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/fuzzers/BUILD.gn
diff --git a/webrtc/test/fuzzers/BUILD.gn b/webrtc/test/fuzzers/BUILD.gn
index 9179d05cc50f0e76c4a94f161d3a9a8e8f29e576..9839a461d8a4ea8379daf76157cab0fd4bc15373 100644
--- a/webrtc/test/fuzzers/BUILD.gn
+++ b/webrtc/test/fuzzers/BUILD.gn
@@ -189,4 +189,36 @@ if (!build_with_chromium) {
"../../media:media",
]
}
+
+ webrtc_fuzzer_test("sdp_parser_fuzzer") {
+ sources = [
+ "sdp_parser_fuzzer.cc",
+ ]
+ deps = [
+ "../../api:libjingle_peerconnection",
+ ]
+ seed_corpus = "corpora/sdp-corpus"
+ }
+
+ webrtc_fuzzer_test("stun_parser_fuzzer") {
+ sources = [
+ "stun_parser_fuzzer.cc",
+ ]
+ deps = [
+ "../../p2p:rtc_p2p",
+ ]
+ seed_corpus = "corpora/stun-corpus"
+ dict = "corpora/stun.tokens"
+ }
+
+ webrtc_fuzzer_test("stun_validator_fuzzer") {
+ sources = [
+ "stun_validator_fuzzer.cc",
+ ]
+ deps = [
+ "../../p2p:rtc_p2p",
+ ]
+ seed_corpus = "corpora/stun-corpus"
+ dict = "corpora/stun.tokens"
+ }
}
« no previous file with comments | « no previous file | webrtc/test/fuzzers/sdp_parser_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698