| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 use_v8_in_net = !is_ios | 39 use_v8_in_net = !is_ios |
| 40 enable_built_in_dns = !is_ios | 40 enable_built_in_dns = !is_ios |
| 41 | 41 |
| 42 declare_args() { | 42 declare_args() { |
| 43 # Disables support for file URLs. File URL support requires use of icu. | 43 # Disables support for file URLs. File URL support requires use of icu. |
| 44 disable_file_support = false | 44 disable_file_support = false |
| 45 | 45 |
| 46 # WebSockets and socket stream code are not used on iOS and are optional in | 46 # WebSockets and socket stream code are not used on iOS and are optional in |
| 47 # cronet. | 47 # cronet. |
| 48 enable_websockets = !is_ios | 48 enable_websockets = !is_ios |
| 49 disable_ftp_support = is_ios | 49 disable_ftp_support = is_ios || is_chromecast |
| 50 | 50 |
| 51 # Enable Kerberos authentication. It is disabled by default on ChromeOS, iOS, | 51 # Enable Kerberos authentication. It is disabled by default on ChromeOS, iOS, |
| 52 # Chromecast, at least for now. This feature needs configuration (krb5.conf | 52 # Chromecast, at least for now. This feature needs configuration (krb5.conf |
| 53 # and so on). | 53 # and so on). |
| 54 use_kerberos = !is_chromeos && !is_ios && !is_chromecast | 54 use_kerberos = !is_chromeos && !is_ios && !is_chromecast |
| 55 | 55 |
| 56 # Do not disable brotli filter by default. | 56 # Do not disable brotli filter by default. |
| 57 disable_brotli_filter = false | 57 disable_brotli_filter = false |
| 58 } | 58 } |
| 59 | 59 |
| (...skipping 2017 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2077 "url_request/url_request_fuzzer.cc", | 2077 "url_request/url_request_fuzzer.cc", |
| 2078 ] | 2078 ] |
| 2079 deps = [ | 2079 deps = [ |
| 2080 ":net_fuzzer_test_support", | 2080 ":net_fuzzer_test_support", |
| 2081 ":test_support", | 2081 ":test_support", |
| 2082 "//base", | 2082 "//base", |
| 2083 "//net", | 2083 "//net", |
| 2084 ] | 2084 ] |
| 2085 dict = "data/http/http.dict" | 2085 dict = "data/http/http.dict" |
| 2086 } | 2086 } |
| OLD | NEW |