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 | |
brettw
2016/05/10 19:51:33
I suspect we never need the capability described i
| |
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 1908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1998 "url_request/url_request_fuzzer.cc", | 1993 "url_request/url_request_fuzzer.cc", |
1999 ] | 1994 ] |
2000 deps = [ | 1995 deps = [ |
2001 ":net_fuzzer_test_support", | 1996 ":net_fuzzer_test_support", |
2002 ":test_support", | 1997 ":test_support", |
2003 "//base", | 1998 "//base", |
2004 "//net", | 1999 "//net", |
2005 ] | 2000 ] |
2006 dict = "data/http/http.dict" | 2001 dict = "data/http/http.dict" |
2007 } | 2002 } |
OLD | NEW |