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

Side by Side Diff: net/BUILD.gn

Issue 2551153003: Add static domain security state generator tool. (Closed)
Patch Set: Created 4 years 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 unified diff | Download patch
« no previous file with comments | « no previous file | net/net.gypi » ('j') | net/net.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/compiled_action.gni")
6 import("//build/config/chromecast_build.gni") 7 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 8 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 9 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 10 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 11 import("//build/config/ui.gni")
11 import("//net/features.gni") 12 import("//net/features.gni")
12 import("//testing/libfuzzer/fuzzer_test.gni") 13 import("//testing/libfuzzer/fuzzer_test.gni")
13 import("//testing/test.gni") 14 import("//testing/test.gni")
14 import("//third_party/icu/config.gni") 15 import("//third_party/icu/config.gni")
15 import("//third_party/protobuf/proto_library.gni") 16 import("//third_party/protobuf/proto_library.gni")
(...skipping 2039 matching lines...) Expand 10 before | Expand all | Expand 10 after
2055 "http/http_security_headers_hpkp_report_only_fuzzer.cc", 2056 "http/http_security_headers_hpkp_report_only_fuzzer.cc",
2056 ] 2057 ]
2057 deps = [ 2058 deps = [
2058 ":net_fuzzer_test_support", 2059 ":net_fuzzer_test_support",
2059 "//base", 2060 "//base",
2060 "//net", 2061 "//net",
2061 "//url", 2062 "//url",
2062 ] 2063 ]
2063 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" 2064 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
2064 } 2065 }
2066
2067 executable("domain_security_preload_generator") {
2068 sources = gypi_values.net_domain_security_state_generator_sources
2069 deps = [
2070 "//base",
2071 "//third_party/boringssl",
2072 ]
2073 }
OLDNEW
« no previous file with comments | « no previous file | net/net.gypi » ('j') | net/net.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698