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

Unified Diff: net/BUILD.gn

Issue 2460633002: Add a fuzzer for GzipSourceStream (Closed)
Patch Set: Address comments Created 4 years, 1 month 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 | net/filter/fuzzed_source_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/BUILD.gn
diff --git a/net/BUILD.gn b/net/BUILD.gn
index 0ddcebe50a2f3a23010333817129e682158b3616..0ae92a315ead6b4db20dc9036f22f59ff7761925 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -1658,6 +1658,8 @@ source_set("net_fuzzer_test_support") {
sources = [
"base/fuzzer_test_support.cc",
+ "filter/fuzzed_source_stream.cc",
+ "filter/fuzzed_source_stream.h",
"socket/fuzzed_socket.cc",
"socket/fuzzed_socket.h",
"socket/fuzzed_socket_factory.cc",
@@ -1878,6 +1880,18 @@ fuzzer_test("net_http_stream_parser_fuzzer") {
dict = "data/fuzzer_dictionaries/net_http_stream_parser_fuzzer.dict"
}
+fuzzer_test("net_gzip_source_stream_fuzzer") {
+ sources = [
+ "filter/gzip_source_stream_fuzzer.cc",
+ ]
+ deps = [
+ ":net_fuzzer_test_support",
+ ":test_support",
+ "//base",
+ "//net",
+ ]
+}
+
fuzzer_test("net_ftp_ctrl_response_fuzzer") {
sources = [
"ftp/ftp_ctrl_response_fuzzer.cc",
« no previous file with comments | « no previous file | net/filter/fuzzed_source_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698