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

Unified Diff: net/BUILD.gn

Issue 2662673002: Restrict the set of WoSign/StartCom certs to the Alexa Top 1M (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « no previous file | net/cert/cert_verify_proc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/BUILD.gn
diff --git a/net/BUILD.gn b/net/BUILD.gn
index 796fb2b82382bb9c459b4b2388bf04d1ca317245..07ab2e39ee79e7cc63a905e558c9ab90f0002124 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -105,6 +105,7 @@ component("net") {
":net_resources",
"//base",
"//net/base/registry_controlled_domains",
+ "//net/data/ssl/wosign:wosign_domains",
"//third_party/protobuf:protobuf_lite",
"//url:url_features",
]
@@ -1250,6 +1251,7 @@ test("net_unittests") {
defines = []
deps = [
+ ":cert_verify_proc_whitelist_unittest_data",
":extras",
":net",
":simple_quic_tools",
@@ -1593,6 +1595,21 @@ if (!is_ios) {
}
}
+action_foreach("cert_verify_proc_whitelist_unittest_data") {
+ script = "//net/tools/dafsa/make_dafsa.py"
+ sources = [
+ "//net/cert/cert_verify_proc_whitelist_unittest1.gperf",
+ ]
+ outputs = [
+ "${target_gen_dir}/cert/{{source_name_part}}-inc.cc",
+ ]
+ args = [
+ "{{source}}",
+ rebase_path("${target_gen_dir}/cert/{{source_name_part}}-inc.cc",
+ root_build_dir),
+ ]
+}
+
# Fuzzers
# This has a global (InitGlobals) that must always be linked in, so
« no previous file with comments | « no previous file | net/cert/cert_verify_proc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698