| 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"
|
| +}
|
|
|