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

Unified Diff: net/http/BUILD.gn

Issue 2901393005: Experiment with HSTS preload list filtering. (Closed)
Patch Set: play.google.com is required too. Created 3 years, 7 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 | « net/features.gni ('k') | net/http/transport_security_state_static.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/BUILD.gn
diff --git a/net/http/BUILD.gn b/net/http/BUILD.gn
index e51061939fa3addbc41df6b73949e87c2e3e6d7e..86a29ef8a604954a29ca2f437f0eadede8df29a2 100644
--- a/net/http/BUILD.gn
+++ b/net/http/BUILD.gn
@@ -3,6 +3,7 @@
# found in the LICENSE file.
import("//build/compiled_action.gni")
+import("//net/features.gni")
compiled_action("generate_transport_security_state") {
tool = "//net/tools/transport_security_state_generator"
@@ -16,8 +17,9 @@ compiled_action("generate_transport_security_state") {
outputs = [
"$target_gen_dir/transport_security_state_static.h",
]
- args =
- rebase_path(inputs, root_build_dir) + rebase_path(outputs, root_build_dir)
+ args = rebase_path(inputs, root_build_dir) +
+ rebase_path(outputs, root_build_dir) +
+ [ "--filter-level=$hsts_preload_list_filter_level" ]
}
compiled_action_foreach("transport_security_state_unittest_data") {
« no previous file with comments | « net/features.gni ('k') | net/http/transport_security_state_static.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698