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

Side by Side Diff: net/features.gni

Issue 2641413003: net/QUIC: inline gypi file into BUILD.gn file and upstream proto-quic. (Closed)
Patch Set: Fix some leaked typos from proto-quic. Created 3 years, 11 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
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.
9 is_proto_quic = false
10
8 # 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.
9 disable_file_support = false 12 disable_file_support = false
10 13
11 # 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
12 # cronet. 15 # cronet.
13 enable_websockets = !is_ios 16 enable_websockets = !is_ios
14 disable_ftp_support = is_ios || is_chromecast 17 disable_ftp_support = is_ios || is_chromecast
15 18
16 # Enable Kerberos authentication. It is disabled by default on ChromeOS, iOS, 19 # Enable Kerberos authentication. It is disabled by default on ChromeOS, iOS,
17 # Chromecast, at least for now. This feature needs configuration (krb5.conf 20 # Chromecast, at least for now. This feature needs configuration (krb5.conf
18 # and so on). 21 # and so on).
19 use_kerberos = !is_chromeos && !is_ios && !is_chromecast 22 use_kerberos = !is_chromeos && !is_ios && !is_chromecast
20 23
21 # Do not disable brotli filter by default. 24 # Do not disable brotli filter by default.
22 disable_brotli_filter = false 25 disable_brotli_filter = false
23 26
24 # Multicast DNS. 27 # Multicast DNS.
25 enable_mdns = is_win || is_linux 28 enable_mdns = is_win || is_linux
26 } 29 }
OLDNEW
« no previous file with comments | « net/data/update_net_gypi.py ('k') | net/net.gypi » ('j') | net/net.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698