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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 if (disable_file_support) { | 65 if (disable_file_support) { |
66 defines += [ "DISABLE_FILE_SUPPORT" ] | 66 defines += [ "DISABLE_FILE_SUPPORT" ] |
67 } | 67 } |
68 if (disable_ftp_support) { | 68 if (disable_ftp_support) { |
69 defines += [ "DISABLE_FTP_SUPPORT=1" ] | 69 defines += [ "DISABLE_FTP_SUPPORT=1" ] |
70 } | 70 } |
71 } | 71 } |
72 | 72 |
73 config("net_internal_config") { | 73 config("net_internal_config") { |
74 defines = [ | 74 defines = [ |
75 # TODO(GYP) Note that the GYP file supports linux_link_kerberos (defaults to | |
76 # 0) which implies that we run pkg_config on kerberos and link to that | |
77 # rather than setting this define which will dynamically open it. That | |
78 # doesn't seem to be set in the regular builds, so we're skipping this | |
79 # capability here. | |
80 "DLOPEN_KERBEROS", | 75 "DLOPEN_KERBEROS", |
81 "NET_IMPLEMENTATION", | 76 "NET_IMPLEMENTATION", |
82 ] | 77 ] |
83 | 78 |
84 if (use_kerberos) { | 79 if (use_kerberos) { |
85 defines += [ "USE_KERBEROS" ] | 80 defines += [ "USE_KERBEROS" ] |
86 if (is_android) { | 81 if (is_android) { |
87 include_dirs = [ "/usr/include/kerberosV" ] | 82 include_dirs = [ "/usr/include/kerberosV" ] |
88 } | 83 } |
89 } | 84 } |
(...skipping 1926 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2016 "url_request/url_request_fuzzer.cc", | 2011 "url_request/url_request_fuzzer.cc", |
2017 ] | 2012 ] |
2018 deps = [ | 2013 deps = [ |
2019 ":net_fuzzer_test_support", | 2014 ":net_fuzzer_test_support", |
2020 ":test_support", | 2015 ":test_support", |
2021 "//base", | 2016 "//base", |
2022 "//net", | 2017 "//net", |
2023 ] | 2018 ] |
2024 dict = "data/http/http.dict" | 2019 dict = "data/http/http.dict" |
2025 } | 2020 } |
OLD | NEW |