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

Unified Diff: net/BUILD.gn

Issue 2448603002: Add simple HPKP and HSTS header parser fuzzers. (Closed)
Patch Set: deps Created 4 years, 2 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_dictionaries/net_http_security_headers_fuzzer.dict » ('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..8679a5017537c87e21e54db8238e98b4f75dd10c 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -2044,3 +2044,38 @@ fuzzer_test("net_auth_challenge_tokenizer_fuzzer") {
"//net",
]
}
+
+fuzzer_test("net_http_security_headers_hsts_fuzzer") {
+ sources = [
+ "http/http_security_headers_hsts_fuzzer.cc",
+ ]
+ deps = [
+ "//base",
+ "//net",
+ ]
+ dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
+}
+
+fuzzer_test("net_http_security_headers_hpkp_fuzzer") {
+ sources = [
+ "http/http_security_headers_hpkp_fuzzer.cc",
+ ]
+ deps = [
+ "//base",
+ "//net",
+ "//url",
+ ]
+ dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
+}
+
+fuzzer_test("net_http_security_headers_hpkp_report_only_fuzzer") {
+ sources = [
+ "http/http_security_headers_hpkp_report_only_fuzzer.cc",
+ ]
+ deps = [
+ "//base",
+ "//net",
+ "//url",
+ ]
+ dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
+}
« no previous file with comments | « no previous file | net/data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698