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

Unified Diff: testing/libfuzzer/fuzzers/BUILD.gn

Issue 2123553002: Add a fuzzer for srtp_unprotect in libsrtp. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't waste bytes. 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 | testing/libfuzzer/fuzzers/libsrtp_fuzzer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/libfuzzer/fuzzers/BUILD.gn
diff --git a/testing/libfuzzer/fuzzers/BUILD.gn b/testing/libfuzzer/fuzzers/BUILD.gn
index 0396df6a8ae228281253aeaabc50f5aedbf5534d..92d89fa6774596541afeae005ec68f401c7cbfc7 100644
--- a/testing/libfuzzer/fuzzers/BUILD.gn
+++ b/testing/libfuzzer/fuzzers/BUILD.gn
@@ -143,6 +143,16 @@ fuzzer_test("usrsctp_fuzzer") {
]
}
+fuzzer_test("libsrtp_fuzzer") {
+ sources = [
+ "libsrtp_fuzzer.cc",
+ ]
+ deps = [
+ "//third_party/libsrtp",
+ ]
+ libfuzzer_options = [ "max_len=1000" ]
+}
+
fuzzer_test("base_json_reader_fuzzer") {
sources = [
"base_json_reader_fuzzer.cc",
« no previous file with comments | « no previous file | testing/libfuzzer/fuzzers/libsrtp_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698