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

Unified Diff: net/BUILD.gn

Issue 2686673003: Initial fuzzer for SpdySession (Closed)
Patch Set: Apply review feedback Created 3 years, 10 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 | net/data/fuzzer_data/net_spdy_session_fuzzer/simple_reply.bin » ('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 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 = [
« no previous file with comments | « no previous file | net/data/fuzzer_data/net_spdy_session_fuzzer/simple_reply.bin » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698