Index: net/BUILD.gn |
diff --git a/net/BUILD.gn b/net/BUILD.gn |
index 5ea19ee0d270e9bc217366bf4316ae22c3ecdf38..c50f3042960c9e1484b587ce7b8bd43860404b95 100644 |
--- a/net/BUILD.gn |
+++ b/net/BUILD.gn |
@@ -2360,6 +2360,8 @@ static_library("test_support") { |
"proxy/proxy_config_service_common_unittest.h", |
"socket/socket_test_util.cc", |
"socket/socket_test_util.h", |
+ "spdy/spdy_test_util_common.cc", |
+ "spdy/spdy_test_util_common.h", |
"test/cert_test_util.cc", |
"test/cert_test_util.h", |
"test/cert_test_util_nss.cc", |
@@ -4670,8 +4672,6 @@ test("net_unittests") { |
"spdy/spdy_stream_test_util.cc", |
"spdy/spdy_stream_test_util.h", |
"spdy/spdy_stream_unittest.cc", |
- "spdy/spdy_test_util_common.cc", |
- "spdy/spdy_test_util_common.h", |
"spdy/spdy_test_utils.cc", |
"spdy/spdy_test_utils.h", |
"spdy/spdy_write_queue_unittest.cc", |
@@ -5680,6 +5680,20 @@ fuzzer_test("net_http_server_fuzzer") { |
seed_corpus = "data/fuzzer_data/http_server_requests/" |
} |
+fuzzer_test("net_spdy_session_fuzzer") { |
+ sources = [ |
+ "spdy/spdy_session_fuzzer.cc", |
+ ] |
+ deps = [ |
+ ":net_fuzzer_test_support", |
+ ":test_support", |
+ "//base", |
+ "//net", |
+ ] |
+ dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
+ seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
+} |
+ |
if (host_toolchain == current_toolchain && !is_proto_quic) { |
executable("transport_security_state_generator") { |
sources = [ |