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

Side by Side Diff: url/features.gni

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 unified diff | Download patch
« no previous file with comments | « tools/origin_trials/validate_subdomain_origin/validate_subdomain_origin.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 # Features used by targets inside and outside of |url|. 5 # Features used by targets inside and outside of |url|.
6 # For details see declare_args() in build/config/BUILDCONFIG.gn. 6 # For details see declare_args() in build/config/BUILDCONFIG.gn.
7 declare_args() { 7 declare_args() {
8 # Enables the use of ICU alternatives in lieu of ICU. The flag is used 8 # Enables the use of ICU alternatives in lieu of ICU for the target toolchain.
9 # for Cronet to reduce the size of the Cronet binary. 9 # The flag is used for Cronet to reduce the size of the Cronet binary.
10 use_platform_icu_alternatives = false 10 use_platform_icu_alternatives = false
11 } 11 }
12
13 # Never use platform icu for host toolchain.
14 # E.g. Don't apply this for host binaries when target_os = "android".
15 use_platform_icu_alternatives =
16 use_platform_icu_alternatives && current_toolchain == default_toolchain
OLDNEW
« no previous file with comments | « tools/origin_trials/validate_subdomain_origin/validate_subdomain_origin.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698