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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 "//third_party/protobuf:protobuf_lite", | 119 "//third_party/protobuf:protobuf_lite", |
120 "//url:url_features", | 120 "//url:url_features", |
121 ] | 121 ] |
122 | 122 |
123 public_deps = [ | 123 public_deps = [ |
124 ":net_quic_proto", | 124 ":net_quic_proto", |
125 "//crypto", | 125 "//crypto", |
126 "//crypto:platform", | 126 "//crypto:platform", |
127 ] | 127 ] |
128 | 128 |
| 129 if (!enable_built_in_dns) { |
| 130 sources -= [ |
| 131 "dns/address_sorter_posix.cc", |
| 132 "dns/address_sorter_posix.h", |
| 133 ] |
| 134 } |
| 135 |
129 if (!is_nacl) { | 136 if (!is_nacl) { |
130 sources += gypi_values.net_non_nacl_sources | 137 sources += gypi_values.net_non_nacl_sources |
131 | 138 |
132 deps += [ | 139 deps += [ |
133 "//base/third_party/dynamic_annotations", | 140 "//base/third_party/dynamic_annotations", |
134 "//components/prefs", | 141 "//components/prefs", |
135 "//sdch", | 142 "//sdch", |
136 "//third_party/zlib", | 143 "//third_party/zlib", |
137 ] | 144 ] |
138 | 145 |
139 if (!use_kerberos) { | 146 if (!use_kerberos) { |
140 sources -= [ | 147 sources -= [ |
141 "http/http_auth_handler_negotiate.cc", | 148 "http/http_auth_handler_negotiate.cc", |
142 "http/http_auth_handler_negotiate.h", | 149 "http/http_auth_handler_negotiate.h", |
143 ] | 150 ] |
144 } | 151 } |
145 | 152 |
146 if (is_posix) { | 153 if (is_posix) { |
147 if (posix_avoid_mmap) { | 154 if (posix_avoid_mmap) { |
148 sources -= [ "disk_cache/blockfile/mapped_file_posix.cc" ] | 155 sources -= [ "disk_cache/blockfile/mapped_file_posix.cc" ] |
149 } else { | 156 } else { |
150 sources -= [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ] | 157 sources -= [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ] |
151 } | 158 } |
152 } | 159 } |
153 | 160 |
154 if (!enable_built_in_dns) { | |
155 sources -= [ | |
156 "dns/address_sorter_posix.cc", | |
157 "dns/address_sorter_posix.h", | |
158 "dns/dns_client.cc", | |
159 ] | |
160 } | |
161 | |
162 if (!use_openssl_certs) { | 161 if (!use_openssl_certs) { |
163 sources -= [ | 162 sources -= [ |
164 "base/crypto_module_openssl.cc", | 163 "base/crypto_module_openssl.cc", |
165 "base/keygen_handler_openssl.cc", | 164 "base/keygen_handler_openssl.cc", |
166 "base/openssl_private_key_store.h", | 165 "base/openssl_private_key_store.h", |
167 "base/openssl_private_key_store_memory.cc", | 166 "base/openssl_private_key_store_memory.cc", |
168 "cert/cert_database_openssl.cc", | 167 "cert/cert_database_openssl.cc", |
169 "cert/cert_verify_proc_openssl.cc", | 168 "cert/cert_verify_proc_openssl.cc", |
170 "cert/cert_verify_proc_openssl.h", | 169 "cert/cert_verify_proc_openssl.h", |
171 "cert/test_root_certs_openssl.cc", | 170 "cert/test_root_certs_openssl.cc", |
(...skipping 1830 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2002 "url_request/url_request_fuzzer.cc", | 2001 "url_request/url_request_fuzzer.cc", |
2003 ] | 2002 ] |
2004 deps = [ | 2003 deps = [ |
2005 ":net_fuzzer_test_support", | 2004 ":net_fuzzer_test_support", |
2006 ":test_support", | 2005 ":test_support", |
2007 "//base", | 2006 "//base", |
2008 "//net", | 2007 "//net", |
2009 ] | 2008 ] |
2010 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" | 2009 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" |
2011 } | 2010 } |
OLD | NEW |