| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 2014 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2025 "//net", | 2025 "//net", |
| 2026 ] | 2026 ] |
| 2027 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" | 2027 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
| 2028 } | 2028 } |
| 2029 | 2029 |
| 2030 fuzzer_test("net_http_security_headers_hpkp_fuzzer") { | 2030 fuzzer_test("net_http_security_headers_hpkp_fuzzer") { |
| 2031 sources = [ | 2031 sources = [ |
| 2032 "http/http_security_headers_hpkp_fuzzer.cc", | 2032 "http/http_security_headers_hpkp_fuzzer.cc", |
| 2033 ] | 2033 ] |
| 2034 deps = [ | 2034 deps = [ |
| 2035 ":net_fuzzer_test_support", |
| 2035 "//base", | 2036 "//base", |
| 2036 "//net", | 2037 "//net", |
| 2037 "//url", | 2038 "//url", |
| 2038 ] | 2039 ] |
| 2039 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" | 2040 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
| 2040 } | 2041 } |
| 2041 | 2042 |
| 2042 fuzzer_test("net_http_security_headers_hpkp_report_only_fuzzer") { | 2043 fuzzer_test("net_http_security_headers_hpkp_report_only_fuzzer") { |
| 2043 sources = [ | 2044 sources = [ |
| 2044 "http/http_security_headers_hpkp_report_only_fuzzer.cc", | 2045 "http/http_security_headers_hpkp_report_only_fuzzer.cc", |
| 2045 ] | 2046 ] |
| 2046 deps = [ | 2047 deps = [ |
| 2048 ":net_fuzzer_test_support", |
| 2047 "//base", | 2049 "//base", |
| 2048 "//net", | 2050 "//net", |
| 2049 "//url", | 2051 "//url", |
| 2050 ] | 2052 ] |
| 2051 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" | 2053 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
| 2052 } | 2054 } |
| OLD | NEW |