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

Unified Diff: net/BUILD.gn

Issue 1917503002: URLRequest fuzzer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fuzz
Patch Set: Add missing include Created 4 years, 8 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/base/fuzzed_data_provider.h » ('j') | net/base/fuzzed_data_provider.h » ('J')
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 2debac60f10515c5423ff1e669290ef645c5c6f6..130562286a7ffe4e1bcdb76c73562f93f86b7102 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -1690,9 +1690,13 @@ source_set("net_fuzzer_test_support") {
testonly = true
sources = [
+ "base/fuzzed_data_provider.cc",
+ "base/fuzzed_data_provider.h",
"base/fuzzer_test_support.cc",
"socket/fuzzed_socket.cc",
"socket/fuzzed_socket.h",
+ "socket/fuzzed_socket_factory.cc",
+ "socket/fuzzed_socket_factory.h",
]
deps = [
"//base",
@@ -1921,3 +1925,16 @@ fuzzer_test("net_socks5_client_socket_fuzzer") {
"//net",
]
}
+
+fuzzer_test("net_url_request_fuzzer") {
+ sources = [
+ "url_request/url_request_fuzzer.cc",
+ ]
+ deps = [
+ ":net_fuzzer_test_support",
+ ":test_support",
+ "//base",
+ "//net",
+ ]
+ dict = "data/http/http.dict"
+}
« no previous file with comments | « no previous file | net/base/fuzzed_data_provider.h » ('j') | net/base/fuzzed_data_provider.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698