| 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 2055 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2066 "http/http_security_headers_hpkp_report_only_fuzzer.cc", | 2066 "http/http_security_headers_hpkp_report_only_fuzzer.cc", |
| 2067 ] | 2067 ] |
| 2068 deps = [ | 2068 deps = [ |
| 2069 ":net_fuzzer_test_support", | 2069 ":net_fuzzer_test_support", |
| 2070 "//base", | 2070 "//base", |
| 2071 "//net", | 2071 "//net", |
| 2072 "//url", | 2072 "//url", |
| 2073 ] | 2073 ] |
| 2074 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" | 2074 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
| 2075 } | 2075 } |
| 2076 |
| 2077 if (host_toolchain == current_toolchain) { |
| 2078 executable("domain_security_preload_generator") { |
| 2079 sources = gypi_values.net_domain_security_state_generator_sources |
| 2080 deps = [ |
| 2081 "//base", |
| 2082 "//crypto", |
| 2083 "//third_party/boringssl", |
| 2084 ] |
| 2085 } |
| 2086 } |
| OLD | NEW |