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

Unified Diff: tools/origin_trials/validate_subdomain_origin/BUILD.gn

Issue 2456053004: Validate origins when generating subdomain tokens (Closed)
Patch Set: Fix android_cronet build error 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/origin_trials/generate_token.py ('k') | tools/origin_trials/validate_subdomain_origin/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/origin_trials/validate_subdomain_origin/BUILD.gn
diff --git a/tools/origin_trials/validate_subdomain_origin/BUILD.gn b/tools/origin_trials/validate_subdomain_origin/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..d28b3ae1e022977a75a79d2c09d6fc38ae2048d8
--- /dev/null
+++ b/tools/origin_trials/validate_subdomain_origin/BUILD.gn
@@ -0,0 +1,20 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+if (current_toolchain == host_toolchain) {
+ executable("validate_subdomain_origin") {
+ output_name = "validate_subdomain_origin"
+ sources = [
+ "validate_subdomain_origin.cc",
+ ]
+
+ configs += [ "//build/config/compiler:wexit_time_destructors" ]
+
+ deps = [
+ "//base",
+ "//net",
+ "//url",
+ ]
+ }
+}
« no previous file with comments | « tools/origin_trials/generate_token.py ('k') | tools/origin_trials/validate_subdomain_origin/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698