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

Unified Diff: net/BUILD.gn

Issue 2649983003: A simple fuzzer for HttpServer, with limited coverage of WebSocket. (Closed)
Patch Set: Rebased, looked like doing it automatically failed Created 3 years, 11 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/http_server_requests/get.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 8dfc8bf1742b8b5270813e0d164f996b30817c8a..a522d46f871676df5128bec19c7951b949ebeea1 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -5179,6 +5179,8 @@ source_set("net_fuzzer_test_support") {
"filter/fuzzed_source_stream.h",
"socket/fuzzed_datagram_client_socket.cc",
"socket/fuzzed_datagram_client_socket.h",
+ "socket/fuzzed_server_socket.cc",
+ "socket/fuzzed_server_socket.h",
"socket/fuzzed_socket.cc",
"socket/fuzzed_socket.h",
"socket/fuzzed_socket_factory.cc",
@@ -5651,6 +5653,21 @@ fuzzer_test("net_http_transport_security_state_static_fuzzer") {
"data/fuzzer_dictionaries/net_http_transport_security_state_fuzzer.dict"
}
+fuzzer_test("net_http_server_fuzzer") {
+ sources = [
+ "server/http_server_fuzzer.cc",
+ ]
+ deps = [
+ ":http_server",
+ ":net_fuzzer_test_support",
+ ":test_support",
+ "//base",
+ "//net",
+ ]
+ dict = "data/fuzzer_dictionaries/net_http_server_fuzzer.dict"
+ seed_corpus = "data/fuzzer_data/http_server_requests/"
+}
+
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/http_server_requests/get.bin » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698