| OLD | NEW |
| 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 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 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 | 30 |
| 31 # Reporting not used on iOS. | 31 # Reporting not used on iOS. |
| 32 enable_reporting = !is_ios | 32 enable_reporting = !is_ios |
| 33 |
| 34 # Whether transport security preload list should be included. This flag should |
| 35 # not be changed without examining the risks and tradeoffs. |
| 36 # HTTP strict transport security (HSTS) is defined in |
| 37 # http://tools.ietf.org/html/ietf-websec-strict-transport-sec. |
| 38 # Changing this flag to false will disable bundling of |
| 39 # net/http/transport_security_state_static.json, which enforces domains- |
| 40 # configured HSTS settings. |
| 41 include_transport_security_state_preload_list = true |
| 33 } | 42 } |
| OLD | NEW |