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

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

Issue 2044523002: Add fuzzers for SDP and STUN parsing. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Updates as per code review Created 4 years, 6 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 3e59339299fb33cc65f0430c59822814d9e4f20c..319427aad52b541dfd5702e84a209f73ab509170 100644
--- a/webrtc/test/fuzzers/BUILD.gn
+++ b/webrtc/test/fuzzers/BUILD.gn
@@ -84,6 +84,33 @@ webrtc_fuzzer_test("rtp_packet_fuzzer") {
]
}
+webrtc_fuzzer_test("sdp_parser_fuzzer") {
+ sources = [
+ "sdp_parser_fuzzer.cc",
+ ]
+ deps = [
+ "//webrtc/api:libjingle_peerconnection",
+ ]
+}
+
+webrtc_fuzzer_test("stun_parser_fuzzer") {
+ sources = [
+ "stun_parser_fuzzer.cc",
+ ]
+ deps = [
+ "//webrtc/p2p:rtc_p2p",
+ ]
+}
+
+webrtc_fuzzer_test("stun_validator_fuzzer") {
+ sources = [
+ "stun_validator_fuzzer.cc",
+ ]
+ deps = [
+ "//webrtc/p2p:rtc_p2p",
+ ]
+}
+
source_set("audio_decoder_fuzzer") {
public_configs = [ "../..:common_inherited_config" ]
sources = [
« 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