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

Side by Side Diff: net/features.gni

Issue 2901393005: Experiment with HSTS preload list filtering. (Closed)
Patch Set: play.google.com is required too. Created 3 years, 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | net/http/BUILD.gn » ('j') | 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 6
7 declare_args() { 7 declare_args() {
8 # If true, prune things down as needed for proto-quic build. 8 # If true, prune things down as needed for proto-quic build.
9 is_proto_quic = false 9 is_proto_quic = false
10 10
11 # Disables support for file URLs. File URL support requires use of icu. 11 # Disables support for file URLs. File URL support requires use of icu.
12 disable_file_support = false 12 disable_file_support = false
13 13
14 # WebSockets and socket stream code are not used on iOS and are optional in 14 # WebSockets and socket stream code are not used on iOS and are optional in
15 # cronet. 15 # cronet.
16 enable_websockets = !is_ios 16 enable_websockets = !is_ios
17 disable_ftp_support = is_ios || is_chromecast 17 disable_ftp_support = is_ios || is_chromecast
18 18
19 # Enable Kerberos authentication. It is disabled by default on iOS, 19 # Enable Kerberos authentication. It is disabled by default on iOS,
20 # Chromecast, at least for now. This feature needs configuration (krb5.conf 20 # Chromecast, at least for now. This feature needs configuration (krb5.conf
21 # and so on). On Chrome OS it is only supported on Active Directory 21 # and so on). On Chrome OS it is only supported on Active Directory
22 # managed devices. 22 # managed devices.
23 use_kerberos = !is_ios && !is_chromecast 23 use_kerberos = !is_ios && !is_chromecast
24 24
25 # Do not disable brotli filter by default. 25 # Do not disable brotli filter by default.
26 disable_brotli_filter = false 26 disable_brotli_filter = false
27 27
28 # Multicast DNS. 28 # Multicast DNS.
29 enable_mdns = is_win || is_linux 29 enable_mdns = is_win || is_linux
30
31 # The level of filtering for the HSTS preload list:
32 # 2: Heavy filtering; filter everything except entries that are needed for
33 # all targets to build and pass tests.
34 # 1: Moderate filtering; only the above and specificly marked entries are
35 # included.
36 # 0: No filtering; all entries are included.
37 hsts_preload_list_filter_level = 1 # Testing
30 } 38 }
OLDNEW
« no previous file with comments | « no previous file | net/http/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698