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

Unified Diff: net/BUILD.gn

Issue 2448603002: Add simple HPKP and HSTS header parser fuzzers. (Closed)
Patch Set: Add HPKP and HSTS header parser fuzzers. 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
Index: net/BUILD.gn
diff --git a/net/BUILD.gn b/net/BUILD.gn
index 0ddcebe50a2f3a23010333817129e682158b3616..6552229d5161ddad95eaeeb7e3c6fef35ab76f9a 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -2044,3 +2044,36 @@ 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",
davidben 2016/10/25 21:32:04 Nit: for the sake of completeness, since you inclu
martijnc 2016/10/26 17:10:28 Done.
+ ]
+ 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",
davidben 2016/10/25 21:32:04 Ditto.
martijnc 2016/10/26 17:10:28 Done.
+ ]
+ dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
+}

Powered by Google App Engine
This is Rietveld 408576698