blob: 130a5971433083e174dd6e2b248ef4fc3096d5e9 [file] [log] [blame]
[email protected]4625ade2014-04-15 19:26:441# 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
3# found in the LICENSE file.
4
5import("//build/config/crypto.gni")
6import("//build/config/features.gni")
7import("//build/config/ui.gni")
rmcilroy5837d332014-12-17 14:30:588import("//build/module_args/v8.gni")
[email protected]8a3f8242014-06-05 18:05:129import("//url/config.gni")
qsrfb5251d12015-01-21 15:57:2210import("//testing/test.gni")
rockot9c67e5f2015-03-12 20:01:2111import("//third_party/icu/config.gni")
rtennetib6f1c0d2015-04-03 17:52:0612import("//third_party/protobuf/proto_library.gni")
[email protected]4625ade2014-04-15 19:26:4413
[email protected]26046b52014-07-16 00:11:0314# TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni.
15# Currently, that file can't be imported multiple times. Make this always
16# imported when http://crbug.com/393704 is fixed.
17if (!is_android) {
18 import("//tools/grit/grit_rule.gni")
19}
20
[email protected]4625ade2014-04-15 19:26:4421if (is_android) {
22 import("//build/config/android/config.gni")
[email protected]ef0eb442014-05-15 09:32:1823 import("//build/config/android/rules.gni")
[email protected]4625ade2014-04-15 19:26:4424} else if (is_mac) {
25 import("//build/config/mac/mac_sdk.gni")
26}
27
28# The list of net files is kept in net.gypi. Read it.
scottmg34fb7e52014-12-03 23:27:2429gypi_values = exec_script("//build/gypi_to_gn.py",
30 [ rebase_path("net.gypi") ],
31 "scope",
32 [ "net.gypi" ])
[email protected]4625ade2014-04-15 19:26:4433
34# Disable Kerberos on ChromeOS, Android and iOS, at least for now. It needs
35# configuration (krb5.conf and so on).
36use_kerberos = !is_chromeos && !is_android && !is_ios
37
38# The way the cache uses mmap() is inefficient on some Android devices. If
39# this flag is set, we hackily avoid using mmap() in the disk cache. We are
40# pretty confident that mmap-ing the index would not hurt any existing x86
41# android devices, but we cannot be so sure about the variety of ARM devices.
42# So enable it for x86 only for now.
dpranke43276212015-02-20 02:55:1943posix_avoid_mmap = is_android && current_cpu != "x86"
[email protected]4625ade2014-04-15 19:26:4444
45# WebSockets and socket stream code are used everywhere except iOS.
46enable_websockets = !is_ios
[email protected]8a3f8242014-06-05 18:05:1247use_v8_in_net = !is_ios
[email protected]4625ade2014-04-15 19:26:4448enable_built_in_dns = !is_ios
[email protected]8a3f8242014-06-05 18:05:1249disable_ftp_support = is_ios
[email protected]4625ade2014-04-15 19:26:4450
[email protected]384dab92014-06-04 20:26:0851declare_args() {
52 # Disables support for file URLs. File URL support requires use of icu.
53 disable_file_support = false
54}
[email protected]02494ec2014-05-07 15:05:2955
[email protected]4625ade2014-04-15 19:26:4456config("net_config") {
57 defines = []
58 if (posix_avoid_mmap) {
59 defines += [ "POSIX_AVOID_MMAP" ]
60 }
[email protected]02494ec2014-05-07 15:05:2961 if (disable_file_support) {
62 defines += [ "DISABLE_FILE_SUPPORT" ]
63 }
[email protected]4625ade2014-04-15 19:26:4464}
65
66component("net") {
67 sources =
scottmg34fb7e52014-12-03 23:27:2468 gypi_values.net_nacl_common_sources + gypi_values.net_non_nacl_sources
[email protected]4625ade2014-04-15 19:26:4469
70 cflags = []
[email protected]8603c5de2014-04-16 20:34:3171 defines = [
72 # TODO(GYP) Note that he GYP file supports linux_link_kerberos (defaults to
73 # 0) which implies that we run pkg_config on kerberos and link to that
74 # rather than setting this define which will dynamically open it. That
75 # doesn't seem to be set in the regular builds, so we're skipping this
76 # capability here.
77 "DLOPEN_KERBEROS",
scottmg34fb7e52014-12-03 23:27:2478 "NET_IMPLEMENTATION",
[email protected]8603c5de2014-04-16 20:34:3179 ]
dpranke43276212015-02-20 02:55:1980
brettwd1c719a2015-02-19 23:17:0481 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
82 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
Brett Wilsone53895272014-09-23 23:41:4683 public_configs = [ ":net_config" ]
[email protected]4625ade2014-04-15 19:26:4484 include_dirs = []
85
Brett Wilsone53895272014-09-23 23:41:4686 public_deps = [
87 "//crypto",
scottmg34fb7e52014-12-03 23:27:2488 "//crypto:platform",
brettwbc44c0a92015-02-20 22:30:3989 "//url",
Brett Wilsone53895272014-09-23 23:41:4690 ]
[email protected]4625ade2014-04-15 19:26:4491 deps = [
scottmg34fb7e52014-12-03 23:27:2492 ":net_resources",
rtennetib6f1c0d2015-04-03 17:52:0693 ":net_quic_proto",
[email protected]4625ade2014-04-15 19:26:4494 "//base",
[email protected]ad66db12014-07-10 12:43:4795 "//base:prefs",
[email protected]4625ade2014-04-15 19:26:4496 "//base/third_party/dynamic_annotations",
[email protected]8a3f8242014-06-05 18:05:1297 "//net/base/registry_controlled_domains",
[email protected]4625ade2014-04-15 19:26:4498 "//sdch",
rtennetib6f1c0d2015-04-03 17:52:0699 "//third_party/protobuf:protobuf_lite",
[email protected]4625ade2014-04-15 19:26:44100 "//third_party/zlib",
101 "//url",
102 ]
103
104 if (use_kerberos) {
105 defines += [ "USE_KERBEROS" ]
106 if (is_android) {
107 include_dirs += [ "/usr/include/kerberosV" ]
108 }
109 } else {
110 sources -= [
111 "http/http_auth_gssapi_posix.cc",
112 "http/http_auth_gssapi_posix.h",
[email protected]4625ade2014-04-15 19:26:44113 "http/http_auth_handler_negotiate.cc",
satorux933fc7a2015-02-13 07:09:10114 "http/http_auth_handler_negotiate.h",
[email protected]4625ade2014-04-15 19:26:44115 ]
116 }
117
118 if (is_posix) {
119 if (posix_avoid_mmap) {
120 sources -= [ "disk_cache/blockfile/mapped_file_posix.cc" ]
121 } else {
122 sources -= [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ]
123 }
124 }
125
[email protected]02494ec2014-05-07 15:05:29126 if (disable_file_support) {
127 sources -= [
128 "base/directory_lister.cc",
129 "base/directory_lister.h",
satorux933fc7a2015-02-13 07:09:10130 "url_request/file_protocol_handler.cc",
131 "url_request/file_protocol_handler.h",
[email protected]02494ec2014-05-07 15:05:29132 "url_request/url_request_file_dir_job.cc",
133 "url_request/url_request_file_dir_job.h",
134 "url_request/url_request_file_job.cc",
135 "url_request/url_request_file_job.h",
[email protected]02494ec2014-05-07 15:05:29136 ]
137 }
138
[email protected]8a3f8242014-06-05 18:05:12139 if (disable_ftp_support) {
[email protected]4625ade2014-04-15 19:26:44140 sources -= [
141 "ftp/ftp_auth_cache.cc",
142 "ftp/ftp_auth_cache.h",
143 "ftp/ftp_ctrl_response_buffer.cc",
144 "ftp/ftp_ctrl_response_buffer.h",
145 "ftp/ftp_directory_listing_parser.cc",
146 "ftp/ftp_directory_listing_parser.h",
147 "ftp/ftp_directory_listing_parser_ls.cc",
148 "ftp/ftp_directory_listing_parser_ls.h",
149 "ftp/ftp_directory_listing_parser_netware.cc",
150 "ftp/ftp_directory_listing_parser_netware.h",
151 "ftp/ftp_directory_listing_parser_os2.cc",
152 "ftp/ftp_directory_listing_parser_os2.h",
153 "ftp/ftp_directory_listing_parser_vms.cc",
154 "ftp/ftp_directory_listing_parser_vms.h",
155 "ftp/ftp_directory_listing_parser_windows.cc",
156 "ftp/ftp_directory_listing_parser_windows.h",
157 "ftp/ftp_network_layer.cc",
158 "ftp/ftp_network_layer.h",
159 "ftp/ftp_network_session.cc",
160 "ftp/ftp_network_session.h",
161 "ftp/ftp_network_transaction.cc",
162 "ftp/ftp_network_transaction.h",
163 "ftp/ftp_request_info.h",
164 "ftp/ftp_response_info.cc",
165 "ftp/ftp_response_info.h",
166 "ftp/ftp_server_type_histograms.cc",
167 "ftp/ftp_server_type_histograms.h",
168 "ftp/ftp_transaction.h",
169 "ftp/ftp_transaction_factory.h",
170 "ftp/ftp_util.cc",
171 "ftp/ftp_util.h",
172 "url_request/ftp_protocol_handler.cc",
173 "url_request/ftp_protocol_handler.h",
174 "url_request/url_request_ftp_job.cc",
175 "url_request/url_request_ftp_job.h",
176 ]
177 }
178
179 if (enable_built_in_dns) {
180 defines += [ "ENABLE_BUILT_IN_DNS" ]
181 } else {
182 sources -= [
183 "dns/address_sorter_posix.cc",
184 "dns/address_sorter_posix.h",
185 "dns/dns_client.cc",
186 ]
187 }
188
189 if (use_openssl) {
190 sources -= [
[email protected]4625ade2014-04-15 19:26:44191 "base/nss_memio.c",
192 "base/nss_memio.h",
[email protected]4625ade2014-04-15 19:26:44193 "cert/ct_log_verifier_nss.cc",
194 "cert/ct_objects_extractor_nss.cc",
195 "cert/jwk_serializer_nss.cc",
[email protected]4625ade2014-04-15 19:26:44196 "cert/scoped_nss_types.h",
[email protected]4625ade2014-04-15 19:26:44197 "cert/x509_util_nss.cc",
[email protected]4625ade2014-04-15 19:26:44198 "quic/crypto/aead_base_decrypter_nss.cc",
199 "quic/crypto/aead_base_encrypter_nss.cc",
200 "quic/crypto/aes_128_gcm_12_decrypter_nss.cc",
201 "quic/crypto/aes_128_gcm_12_encrypter_nss.cc",
202 "quic/crypto/chacha20_poly1305_decrypter_nss.cc",
203 "quic/crypto/chacha20_poly1305_encrypter_nss.cc",
204 "quic/crypto/channel_id_nss.cc",
205 "quic/crypto/p256_key_exchange_nss.cc",
206 "socket/nss_ssl_util.cc",
207 "socket/nss_ssl_util.h",
208 "socket/ssl_client_socket_nss.cc",
209 "socket/ssl_client_socket_nss.h",
210 "socket/ssl_server_socket_nss.cc",
211 "socket/ssl_server_socket_nss.h",
[email protected]4625ade2014-04-15 19:26:44212 ]
[email protected]71d94dfce92014-04-30 16:47:24213 if (is_ios) {
214 # Always removed for !ios below.
215 sources -= [
216 "cert/cert_verify_proc_nss.cc",
217 "cert/cert_verify_proc_nss.h",
[email protected]71d94dfce92014-04-30 16:47:24218 ]
219 }
davidbend5587412014-10-30 21:44:16220 if (is_win) {
scottmg34fb7e52014-12-03 23:27:24221 sources -= [ "cert/sha256_legacy_support_nss_win.cc" ]
davidbend5587412014-10-30 21:44:16222 }
davidben2bcbc6b2015-04-22 02:36:41223 if (!use_nss_certs && !is_ios) {
224 sources -= [ "cert/x509_util_nss.h" ]
225 }
[email protected]4625ade2014-04-15 19:26:44226 } else {
227 sources -= [
[email protected]4625ade2014-04-15 19:26:44228 "cert/ct_log_verifier_openssl.cc",
229 "cert/ct_objects_extractor_openssl.cc",
230 "cert/jwk_serializer_openssl.cc",
231 "cert/x509_util_openssl.cc",
232 "cert/x509_util_openssl.h",
233 "quic/crypto/aead_base_decrypter_openssl.cc",
234 "quic/crypto/aead_base_encrypter_openssl.cc",
235 "quic/crypto/aes_128_gcm_12_decrypter_openssl.cc",
236 "quic/crypto/aes_128_gcm_12_encrypter_openssl.cc",
237 "quic/crypto/chacha20_poly1305_decrypter_openssl.cc",
238 "quic/crypto/chacha20_poly1305_encrypter_openssl.cc",
239 "quic/crypto/channel_id_openssl.cc",
240 "quic/crypto/p256_key_exchange_openssl.cc",
241 "quic/crypto/scoped_evp_aead_ctx.cc",
242 "quic/crypto/scoped_evp_aead_ctx.h",
243 "socket/ssl_client_socket_openssl.cc",
244 "socket/ssl_client_socket_openssl.h",
245 "socket/ssl_server_socket_openssl.cc",
[email protected]c8a80e92014-05-17 16:02:08246 "socket/ssl_server_socket_openssl.h",
[email protected]97a854f2014-07-29 07:51:36247 "ssl/openssl_platform_key.h",
davidben2bcbc6b2015-04-22 02:36:41248 "ssl/openssl_platform_key_nss.cc",
[email protected]97a854f2014-07-29 07:51:36249 "ssl/openssl_ssl_util.cc",
250 "ssl/openssl_ssl_util.h",
davidbendafe4e52015-04-08 22:53:52251 "ssl/ssl_client_session_cache_openssl.cc",
252 "ssl/ssl_client_session_cache_openssl.h",
[email protected]4625ade2014-04-15 19:26:44253 ]
[email protected]97a854f2014-07-29 07:51:36254 if (is_mac) {
scottmg34fb7e52014-12-03 23:27:24255 sources -= [ "ssl/openssl_platform_key_mac.cc" ]
[email protected]97a854f2014-07-29 07:51:36256 }
257 if (is_win) {
258 sources -= [
John Abd-El-Malek494329e2014-11-05 19:06:30259 "cert/sha256_legacy_support_openssl_win.cc",
[email protected]97a854f2014-07-29 07:51:36260 "ssl/openssl_platform_key_win.cc",
261 ]
262 }
[email protected]4625ade2014-04-15 19:26:44263 }
264
265 if (!use_openssl_certs) {
266 sources -= [
davidben2bcbc6b2015-04-22 02:36:41267 "base/crypto_module_openssl.cc",
isherman7e5de442014-09-25 23:00:18268 "base/keygen_handler_openssl.cc",
[email protected]4625ade2014-04-15 19:26:44269 "base/openssl_private_key_store.h",
270 "base/openssl_private_key_store_memory.cc",
271 "cert/cert_database_openssl.cc",
272 "cert/cert_verify_proc_openssl.cc",
273 "cert/cert_verify_proc_openssl.h",
274 "cert/test_root_certs_openssl.cc",
275 "cert/x509_certificate_openssl.cc",
276 "ssl/openssl_client_key_store.cc",
277 "ssl/openssl_client_key_store.h",
278 ]
279 if (is_android) {
scottmg34fb7e52014-12-03 23:27:24280 sources -= [ "base/openssl_private_key_store_android.cc" ]
[email protected]4625ade2014-04-15 19:26:44281 }
[email protected]1ea01752014-05-23 19:01:46282 } else if (is_android) {
283 # Android doesn't use these even when using OpenSSL.
284 sources -= [
285 "base/openssl_private_key_store_memory.cc",
286 "cert/cert_database_openssl.cc",
287 "cert/cert_verify_proc_openssl.cc",
288 "cert/test_root_certs_openssl.cc",
289 ]
[email protected]4625ade2014-04-15 19:26:44290 }
291
mukai77f8210a2014-10-07 16:35:14292 if (use_glib && !is_chromeos) {
[email protected]4625ade2014-04-15 19:26:44293 configs += [ "//build/config/linux:gconf" ]
294 deps += [ "//build/config/linux:gio" ]
295 }
296
297 if (is_linux) {
298 configs += [ "//build/config/linux:libresolv" ]
davidben2bcbc6b2015-04-22 02:36:41299 }
300
301 if (!use_nss_certs) {
[email protected]4625ade2014-04-15 19:26:44302 sources -= [
303 "base/crypto_module_nss.cc",
304 "base/keygen_handler_nss.cc",
305 "cert/cert_database_nss.cc",
306 "cert/nss_cert_database.cc",
307 "cert/nss_cert_database.h",
[email protected]4625ade2014-04-15 19:26:44308 "cert/x509_certificate_nss.cc",
davidben2bcbc6b2015-04-22 02:36:41309 "ssl/client_cert_store_nss.cc",
310 "ssl/client_cert_store_nss.h",
[email protected]4625ade2014-04-15 19:26:44311 "third_party/mozilla_security_manager/nsKeygenHandler.cpp",
312 "third_party/mozilla_security_manager/nsKeygenHandler.h",
313 "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
314 "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
315 "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
316 "third_party/mozilla_security_manager/nsPKCS12Blob.h",
317 ]
[email protected]e8ab6912014-04-21 20:54:51318 if (!is_ios) {
319 # These files are part of the partial implementation of NSS on iOS so
320 # keep them in that case (even though use_nss_certs is not set).
321 sources -= [
322 "cert/cert_verify_proc_nss.cc",
323 "cert/cert_verify_proc_nss.h",
davidben2bcbc6b2015-04-22 02:36:41324 "cert/test_root_certs_nss.cc",
325 "cert/x509_util_nss_certs.cc",
326 "cert_net/nss_ocsp.cc",
327 "cert_net/nss_ocsp.h",
[email protected]e8ab6912014-04-21 20:54:51328 ]
329 }
[email protected]4625ade2014-04-15 19:26:44330 if (is_chromeos) {
331 # These were already removed on non-ChromeOS.
332 sources -= [
davidben2bcbc6b2015-04-22 02:36:41333 "cert/nss_cert_database_chromeos.cc",
334 "cert/nss_cert_database_chromeos.h",
335 "cert/nss_profile_filter_chromeos.cc",
336 "cert/nss_profile_filter_chromeos.h",
[email protected]4625ade2014-04-15 19:26:44337 "ssl/client_cert_store_chromeos.cc",
338 "ssl/client_cert_store_chromeos.h",
339 ]
340 }
davidben2bcbc6b2015-04-22 02:36:41341 if (use_openssl) {
342 sources -= [ "ssl/openssl_platform_key_nss.cc" ]
343 }
344 } else if (use_openssl) {
345 # client_cert_store_nss.c requires NSS_CmpCertChainWCANames from NSS's
346 # libssl, but our bundled copy is not built in OpenSSL ports. Pull that file
347 # in directly.
348 sources += [ "third_party/nss/ssl/cmpcert.c" ]
[email protected]4625ade2014-04-15 19:26:44349 }
350
351 if (!enable_websockets) {
352 sources -= [
[email protected]4625ade2014-04-15 19:26:44353 "websockets/websocket_basic_handshake_stream.cc",
354 "websockets/websocket_basic_handshake_stream.h",
355 "websockets/websocket_basic_stream.cc",
356 "websockets/websocket_basic_stream.h",
357 "websockets/websocket_channel.cc",
358 "websockets/websocket_channel.h",
359 "websockets/websocket_deflate_predictor.h",
360 "websockets/websocket_deflate_predictor_impl.cc",
361 "websockets/websocket_deflate_predictor_impl.h",
362 "websockets/websocket_deflate_stream.cc",
363 "websockets/websocket_deflate_stream.h",
364 "websockets/websocket_deflater.cc",
365 "websockets/websocket_deflater.h",
366 "websockets/websocket_errors.cc",
367 "websockets/websocket_errors.h",
368 "websockets/websocket_extension.cc",
369 "websockets/websocket_extension.h",
370 "websockets/websocket_extension_parser.cc",
371 "websockets/websocket_extension_parser.h",
372 "websockets/websocket_frame.cc",
373 "websockets/websocket_frame.h",
374 "websockets/websocket_frame_parser.cc",
375 "websockets/websocket_frame_parser.h",
ricea11bdcd02014-11-20 09:57:07376 "websockets/websocket_handshake_challenge.cc",
377 "websockets/websocket_handshake_challenge.h",
satorux933fc7a2015-02-13 07:09:10378 "websockets/websocket_handshake_constants.cc",
379 "websockets/websocket_handshake_constants.h",
[email protected]4625ade2014-04-15 19:26:44380 "websockets/websocket_handshake_request_info.cc",
381 "websockets/websocket_handshake_request_info.h",
382 "websockets/websocket_handshake_response_info.cc",
383 "websockets/websocket_handshake_response_info.h",
384 "websockets/websocket_handshake_stream_base.h",
385 "websockets/websocket_handshake_stream_create_helper.cc",
386 "websockets/websocket_handshake_stream_create_helper.h",
387 "websockets/websocket_inflater.cc",
388 "websockets/websocket_inflater.h",
[email protected]4625ade2014-04-15 19:26:44389 "websockets/websocket_mux.h",
[email protected]4625ade2014-04-15 19:26:44390 "websockets/websocket_stream.cc",
391 "websockets/websocket_stream.h",
[email protected]4625ade2014-04-15 19:26:44392 ]
393 }
394
395 if (!enable_mdns) {
396 sources -= [
397 "dns/mdns_cache.cc",
398 "dns/mdns_cache.h",
399 "dns/mdns_client.cc",
400 "dns/mdns_client.h",
401 "dns/mdns_client_impl.cc",
402 "dns/mdns_client_impl.h",
403 "dns/record_parsed.cc",
404 "dns/record_parsed.h",
405 "dns/record_rdata.cc",
406 "dns/record_rdata.h",
407 ]
408 }
409
410 if (is_win) {
411 sources -= [
412 "http/http_auth_handler_ntlm_portable.cc",
[email protected]2ef2b0e2014-07-09 21:12:34413 "socket/socket_libevent.cc",
414 "socket/socket_libevent.h",
[email protected]4625ade2014-04-15 19:26:44415 "socket/tcp_socket_libevent.cc",
416 "socket/tcp_socket_libevent.h",
417 "udp/udp_socket_libevent.cc",
418 "udp/udp_socket_libevent.h",
419 ]
[email protected]4625ade2014-04-15 19:26:44420 } else { # !is_win
421 sources -= [
422 "base/winsock_init.cc",
423 "base/winsock_init.h",
424 "base/winsock_util.cc",
425 "base/winsock_util.h",
426 "proxy/proxy_resolver_winhttp.cc",
427 "proxy/proxy_resolver_winhttp.h",
428 ]
429 }
430
431 if (is_mac) {
[email protected]4625ade2014-04-15 19:26:44432 libs = [
[email protected]ab9ce6e2014-04-17 20:33:19433 "Foundation.framework",
434 "Security.framework",
435 "SystemConfiguration.framework",
436 "resolv",
[email protected]4625ade2014-04-15 19:26:44437 ]
438 }
439
440 if (is_ios) {
davidben2bcbc6b2015-04-22 02:36:41441 # Add back some sources that were otherwise filtered out. iOS needs some Mac
442 # files.
[email protected]b2b2bf52014-05-28 20:26:57443 set_sources_assignment_filter([])
444 sources += [
guoweis7eb7ab52014-11-14 17:42:56445 "base/net_util_mac.cc",
446 "base/net_util_mac.h",
[email protected]b2b2bf52014-05-28 20:26:57447 "base/network_change_notifier_mac.cc",
448 "base/network_config_watcher_mac.cc",
449 "base/platform_mime_util_mac.mm",
satorux933fc7a2015-02-13 07:09:10450 "proxy/proxy_resolver_mac.cc",
451 "proxy/proxy_server_mac.cc",
[email protected]b2b2bf52014-05-28 20:26:57452 ]
453 set_sources_assignment_filter(sources_assignment_filter)
454
[email protected]4625ade2014-04-15 19:26:44455 sources -= [ "disk_cache/blockfile/file_posix.cc" ]
[email protected]4625ade2014-04-15 19:26:44456 libs = [
[email protected]ab9ce6e2014-04-17 20:33:19457 "CFNetwork.framework",
458 "MobileCoreServices.framework",
459 "Security.framework",
460 "SystemConfiguration.framework",
461 "resolv",
[email protected]4625ade2014-04-15 19:26:44462 ]
463 }
464
erikchen006a7cf2014-12-03 22:27:11465 if (is_ios || is_mac) {
466 sources += gypi_values.net_base_mac_ios_sources
467 }
468
[email protected]4625ade2014-04-15 19:26:44469 if (is_android) {
[email protected]b2b2bf52014-05-28 20:26:57470 # Add some Linux sources that were excluded by the filter, but which
471 # are needed.
472 set_sources_assignment_filter([])
473 sources += [
[email protected]b2b2bf52014-05-28 20:26:57474 "base/address_tracker_linux.cc",
475 "base/address_tracker_linux.h",
guoweis7eb7ab52014-11-14 17:42:56476 "base/net_util_linux.cc",
scottmg34fb7e52014-12-03 23:27:24477 "base/net_util_linux.h",
satorux933fc7a2015-02-13 07:09:10478 "base/platform_mime_util_linux.cc",
[email protected]b2b2bf52014-05-28 20:26:57479 ]
480 set_sources_assignment_filter(sources_assignment_filter)
tornefe8398d2015-04-07 18:47:26481 deps += [ ":net_jni_headers" ]
[email protected]4625ade2014-04-15 19:26:44482 }
[email protected]ad66db12014-07-10 12:43:47483
[email protected]85191ed2014-05-15 00:41:49484 if (use_icu_alternatives_on_android) {
[email protected]85191ed2014-05-15 00:41:49485 sources += [
486 "base/net_string_util_icu_alternatives_android.cc",
487 "base/net_string_util_icu_alternatives_android.h",
488 ]
mefdc8e94b2015-03-11 19:49:05489 } else {
490 deps += [
491 "//base:i18n",
492 "//third_party/icu",
493 ]
494 sources += [
495 "base/filename_util_icu.cc",
496 "base/net_string_util_icu.cc",
497 "base/net_util_icu.cc",
498 ]
[email protected]85191ed2014-05-15 00:41:49499 }
[email protected]4625ade2014-04-15 19:26:44500}
501
502grit("net_resources") {
503 source = "base/net_resources.grd"
[email protected]7ae52902014-08-18 22:36:01504 use_qualified_include = true
[email protected]b89c53842014-07-23 16:32:32505 outputs = [
506 "grit/net_resources.h",
507 "net_resources.pak",
508 "net_resources.rc",
509 ]
[email protected]4625ade2014-04-15 19:26:44510}
511
rtennetib6f1c0d2015-04-03 17:52:06512proto_library("net_quic_proto") {
513 sources = [
514 "quic/proto/cached_network_parameters.proto",
515 "quic/proto/source_address_token.proto",
516 ]
517 cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
518 cc_include = "net/base/net_export.h"
519
520 defines = [ "NET_IMPLEMENTATION" ]
521
522 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
523}
524
Brett Wilson83fd4242014-09-02 19:45:33525static_library("extras") {
mef327a8e42014-08-29 17:10:03526 sources = gypi_values.net_extras_sources
527 configs += [ "//build/config/compiler:wexit_time_destructors" ]
528 deps = [
529 ":net",
brettwbc44c0a92015-02-20 22:30:39530 "//base",
mef327a8e42014-08-29 17:10:03531 "//sql:sql",
532 ]
533}
534
[email protected]8a3f8242014-06-05 18:05:12535static_library("http_server") {
[email protected]4625ade2014-04-15 19:26:44536 sources = [
537 "server/http_connection.cc",
538 "server/http_connection.h",
539 "server/http_server.cc",
540 "server/http_server.h",
541 "server/http_server_request_info.cc",
542 "server/http_server_request_info.h",
543 "server/http_server_response_info.cc",
544 "server/http_server_response_info.h",
545 "server/web_socket.cc",
546 "server/web_socket.h",
dgozmana6e70092014-12-12 14:46:21547 "server/web_socket_encoder.cc",
548 "server/web_socket_encoder.h",
[email protected]4625ade2014-04-15 19:26:44549 ]
jambc6cc8e2014-11-14 17:56:29550 configs += [
brettwd1c719a2015-02-19 23:17:04551 "//build/config/compiler:no_size_t_to_int_warning",
jambc6cc8e2014-11-14 17:56:29552 "//build/config/compiler:wexit_time_destructors",
jambc6cc8e2014-11-14 17:56:29553 ]
[email protected]4625ade2014-04-15 19:26:44554 deps = [
555 ":net",
556 "//base",
557 ]
558}
559
[email protected]8603c5de2014-04-16 20:34:31560executable("dump_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:24561 testonly = true
[email protected]8603c5de2014-04-16 20:34:31562 sources = [
563 "tools/dump_cache/cache_dumper.cc",
564 "tools/dump_cache/cache_dumper.h",
565 "tools/dump_cache/dump_cache.cc",
566 "tools/dump_cache/dump_files.cc",
567 "tools/dump_cache/dump_files.h",
568 "tools/dump_cache/simple_cache_dumper.cc",
569 "tools/dump_cache/simple_cache_dumper.h",
[email protected]8603c5de2014-04-16 20:34:31570 "tools/dump_cache/url_to_filename_encoder.cc",
571 "tools/dump_cache/url_to_filename_encoder.h",
[email protected]8603c5de2014-04-16 20:34:31572 "tools/dump_cache/url_utilities.cc",
satorux933fc7a2015-02-13 07:09:10573 "tools/dump_cache/url_utilities.h",
[email protected]8603c5de2014-04-16 20:34:31574 ]
[email protected]4625ade2014-04-15 19:26:44575
brettwd1c719a2015-02-19 23:17:04576 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
577 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:31578
579 deps = [
580 "//base",
581 ":net",
[email protected]b2b2bf52014-05-28 20:26:57582 ":test_support",
[email protected]8603c5de2014-04-16 20:34:31583 ]
584}
585
[email protected]b2b2bf52014-05-28 20:26:57586source_set("test_support") {
Brett Wilson8f80ad0b2014-09-08 19:50:24587 testonly = true
[email protected]8603c5de2014-04-16 20:34:31588 sources = [
[email protected]8603c5de2014-04-16 20:34:31589 "base/load_timing_info_test_util.cc",
590 "base/load_timing_info_test_util.h",
591 "base/mock_file_stream.cc",
592 "base/mock_file_stream.h",
593 "base/test_completion_callback.cc",
594 "base/test_completion_callback.h",
595 "base/test_data_directory.cc",
596 "base/test_data_directory.h",
597 "cert/mock_cert_verifier.cc",
598 "cert/mock_cert_verifier.h",
599 "cookies/cookie_monster_store_test.cc",
600 "cookies/cookie_monster_store_test.h",
601 "cookies/cookie_store_test_callbacks.cc",
602 "cookies/cookie_store_test_callbacks.h",
603 "cookies/cookie_store_test_helpers.cc",
604 "cookies/cookie_store_test_helpers.h",
605 "disk_cache/disk_cache_test_base.cc",
606 "disk_cache/disk_cache_test_base.h",
607 "disk_cache/disk_cache_test_util.cc",
608 "disk_cache/disk_cache_test_util.h",
609 "dns/dns_test_util.cc",
610 "dns/dns_test_util.h",
611 "dns/mock_host_resolver.cc",
612 "dns/mock_host_resolver.h",
613 "dns/mock_mdns_socket_factory.cc",
614 "dns/mock_mdns_socket_factory.h",
[email protected]8a3f8242014-06-05 18:05:12615 "http/http_transaction_test_util.cc",
616 "http/http_transaction_test_util.h",
eroman87c53d62015-04-02 06:51:07617 "log/captured_net_log_entry.cc",
618 "log/captured_net_log_entry.h",
eroman87c53d62015-04-02 06:51:07619 "log/capturing_net_log_observer.cc",
620 "log/capturing_net_log_observer.h",
vishal.b62985ca92015-04-17 08:45:51621 "log/test_net_log.cc",
622 "log/test_net_log.h",
[email protected]8603c5de2014-04-16 20:34:31623 "proxy/mock_proxy_resolver.cc",
624 "proxy/mock_proxy_resolver.h",
625 "proxy/mock_proxy_script_fetcher.cc",
626 "proxy/mock_proxy_script_fetcher.h",
627 "proxy/proxy_config_service_common_unittest.cc",
628 "proxy/proxy_config_service_common_unittest.h",
629 "socket/socket_test_util.cc",
630 "socket/socket_test_util.h",
631 "test/cert_test_util.cc",
632 "test/cert_test_util.h",
[email protected]83e1ae32014-07-18 10:57:07633 "test/cert_test_util_nss.cc",
[email protected]8603c5de2014-04-16 20:34:31634 "test/ct_test_util.cc",
635 "test/ct_test_util.h",
636 "test/embedded_test_server/embedded_test_server.cc",
637 "test/embedded_test_server/embedded_test_server.h",
638 "test/embedded_test_server/http_connection.cc",
639 "test/embedded_test_server/http_connection.h",
640 "test/embedded_test_server/http_request.cc",
641 "test/embedded_test_server/http_request.h",
642 "test/embedded_test_server/http_response.cc",
643 "test/embedded_test_server/http_response.h",
sammc6ac3fe52015-02-25 06:00:28644 "test/event_waiter.h",
[email protected]8603c5de2014-04-16 20:34:31645 "test/net_test_suite.cc",
646 "test/net_test_suite.h",
647 "test/python_utils.cc",
648 "test/python_utils.h",
649 "test/spawned_test_server/base_test_server.cc",
650 "test/spawned_test_server/base_test_server.h",
[email protected]8603c5de2014-04-16 20:34:31651 "test/spawned_test_server/local_test_server.cc",
652 "test/spawned_test_server/local_test_server.h",
satorux933fc7a2015-02-13 07:09:10653 "test/spawned_test_server/local_test_server_posix.cc",
654 "test/spawned_test_server/local_test_server_win.cc",
[email protected]8603c5de2014-04-16 20:34:31655 "test/spawned_test_server/remote_test_server.cc",
656 "test/spawned_test_server/remote_test_server.h",
657 "test/spawned_test_server/spawned_test_server.h",
658 "test/spawned_test_server/spawner_communicator.cc",
659 "test/spawned_test_server/spawner_communicator.h",
Brett Wilson32ce17a2014-11-10 17:45:30660 "test/url_request/url_request_failed_job.cc",
661 "test/url_request/url_request_failed_job.h",
mef3e826cf2014-12-13 18:40:40662 "test/url_request/url_request_mock_data_job.cc",
663 "test/url_request/url_request_mock_data_job.h",
jam8e45cd72015-01-20 16:33:44664 "test/url_request/url_request_slow_download_job.cc",
665 "test/url_request/url_request_slow_download_job.h",
[email protected]8603c5de2014-04-16 20:34:31666 "url_request/test_url_fetcher_factory.cc",
667 "url_request/test_url_fetcher_factory.h",
668 "url_request/url_request_test_util.cc",
669 "url_request/url_request_test_util.h",
670 ]
671
brettwd1c719a2015-02-19 23:17:04672 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
673 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:31674
Brett Wilsone53895272014-09-23 23:41:46675 public_deps = [
[email protected]8603c5de2014-04-16 20:34:31676 "//base",
677 "//base/test:test_support",
[email protected]22fe91d2014-08-12 17:07:12678 "//crypto",
[email protected]59ff2d42014-04-22 22:25:23679 "//net",
[email protected]8603c5de2014-04-16 20:34:31680 "//net/tools/tld_cleanup",
681 "//testing/gmock",
682 "//testing/gtest",
683 "//url",
684 ]
685
jamb533b7e2015-03-04 17:12:05686 if (!is_ios) {
687 public_deps += [ "//third_party/protobuf:py_proto" ]
688 }
689
davidben15d69d482014-09-29 18:24:08690 if (!use_openssl && (use_nss_certs || is_ios)) {
scottmg34fb7e52014-12-03 23:27:24691 public_deps += [ "//crypto:platform" ]
[email protected]8603c5de2014-04-16 20:34:31692 }
693
694 if (!is_android) {
695 sources -= [
696 "test/spawned_test_server/remote_test_server.cc",
697 "test/spawned_test_server/remote_test_server.h",
698 "test/spawned_test_server/spawner_communicator.cc",
699 "test/spawned_test_server/spawner_communicator.h",
700 ]
701 }
702
703 if (use_v8_in_net) {
Brett Wilsone53895272014-09-23 23:41:46704 public_deps += [ ":net_with_v8" ]
[email protected]8603c5de2014-04-16 20:34:31705 }
706
707 if (!enable_mdns) {
708 sources -= [
709 "dns/mock_mdns_socket_factory.cc",
710 "dns/mock_mdns_socket_factory.h",
711 ]
712 }
713
davidben15d69d482014-09-29 18:24:08714 if (!use_nss_certs) {
scottmg34fb7e52014-12-03 23:27:24715 sources -= [ "test/cert_test_util_nss.cc" ]
[email protected]83e1ae32014-07-18 10:57:07716 }
xunjielia6888202015-04-14 21:34:25717
718 if (!disable_file_support) {
719 sources += [
720 "test/url_request/url_request_mock_http_job.cc",
721 "test/url_request/url_request_mock_http_job.h",
722 "url_request/test_url_request_interceptor.cc",
723 "url_request/test_url_request_interceptor.h",
724 ]
725 }
[email protected]8603c5de2014-04-16 20:34:31726}
727
[email protected]ceeaac792014-06-25 05:14:43728source_set("balsa") {
729 sources = [
730 "tools/balsa/balsa_enums.h",
731 "tools/balsa/balsa_frame.cc",
732 "tools/balsa/balsa_frame.h",
733 "tools/balsa/balsa_headers.cc",
734 "tools/balsa/balsa_headers.h",
735 "tools/balsa/balsa_headers_token_utils.cc",
736 "tools/balsa/balsa_headers_token_utils.h",
737 "tools/balsa/balsa_visitor_interface.h",
738 "tools/balsa/http_message_constants.cc",
739 "tools/balsa/http_message_constants.h",
740 "tools/balsa/noop_balsa_visitor.h",
741 "tools/balsa/simple_buffer.cc",
742 "tools/balsa/simple_buffer.h",
743 "tools/balsa/split.cc",
744 "tools/balsa/split.h",
745 "tools/balsa/string_piece_utils.h",
746 "tools/quic/spdy_utils.cc",
747 "tools/quic/spdy_utils.h",
748 ]
749 deps = [
750 ":net",
751 "//base",
[email protected]22fe91d2014-08-12 17:07:12752 "//url",
[email protected]ceeaac792014-06-25 05:14:43753 ]
754}
755
[email protected]8603c5de2014-04-16 20:34:31756if (use_v8_in_net) {
757 component("net_with_v8") {
758 sources = [
759 "proxy/proxy_resolver_v8.cc",
760 "proxy/proxy_resolver_v8.h",
761 "proxy/proxy_resolver_v8_tracing.cc",
762 "proxy/proxy_resolver_v8_tracing.h",
763 "proxy/proxy_service_v8.cc",
764 "proxy/proxy_service_v8.h",
765 ]
766
767 defines = [ "NET_IMPLEMENTATION" ]
768 configs += [
brettwd1c719a2015-02-19 23:17:04769 "//build/config/compiler:no_size_t_to_int_warning",
[email protected]8603c5de2014-04-16 20:34:31770 "//build/config/compiler:wexit_time_destructors",
771 ]
772
Brett Wilsone53895272014-09-23 23:41:46773 public_deps = [
[email protected]8603c5de2014-04-16 20:34:31774 ":net",
Brett Wilsone53895272014-09-23 23:41:46775 ]
776 deps = [
[email protected]8603c5de2014-04-16 20:34:31777 "//base",
778 "//gin",
779 "//url",
780 "//v8",
781 ]
782 }
783}
784
amistry7e6ebfdc82015-02-13 04:19:11785if (use_v8_in_net && !is_android) {
786 source_set("net_browser_services") {
787 sources = [
788 "dns/mojo_host_resolver_impl.cc",
789 "dns/mojo_host_resolver_impl.h",
amistry6e1ed1b2015-03-12 05:24:01790 "proxy/in_process_mojo_proxy_resolver_factory.cc",
791 "proxy/in_process_mojo_proxy_resolver_factory.h",
amistry07ff1402015-03-10 07:34:07792 "proxy/mojo_proxy_resolver_factory.h",
793 "proxy/proxy_resolver_mojo.cc",
794 "proxy/proxy_resolver_mojo.h",
amistry6e1ed1b2015-03-12 05:24:01795 "proxy/proxy_service_mojo.cc",
796 "proxy/proxy_service_mojo.h",
amistry7e6ebfdc82015-02-13 04:19:11797 ]
798
799 public_deps = [
800 ":mojo_type_converters",
801 ":net",
brettwbc44c0a92015-02-20 22:30:39802 "//base",
amistry07ff1402015-03-10 07:34:07803 "//mojo/common",
amistry7e6ebfdc82015-02-13 04:19:11804 "//net/interfaces",
805 "//third_party/mojo/src/mojo/public/cpp/bindings",
amistry6e1ed1b2015-03-12 05:24:01806
807 # NOTE(amistry): As long as we support in-process Mojo v8 PAC, we need
808 # this dependency since in_process_mojo_proxy_resolver_factory creates
809 # the utility process side Mojo services in the browser process.
810 # Ultimately, this will go away when we only support out-of-process.
811 ":net_utility_services",
amistry7e6ebfdc82015-02-13 04:19:11812 ]
813 }
814
815 source_set("mojo_type_converters") {
816 sources = [
amistry7ec58112015-02-26 06:03:00817 "dns/mojo_host_type_converters.cc",
818 "dns/mojo_host_type_converters.h",
819 "proxy/mojo_proxy_type_converters.cc",
820 "proxy/mojo_proxy_type_converters.h",
amistry7e6ebfdc82015-02-13 04:19:11821 ]
822
823 public_deps = [
824 ":net",
825 "//net/interfaces",
826 "//third_party/mojo/src/mojo/public/cpp/bindings",
827 ]
828 }
sammc5403aa1d2015-02-25 04:59:21829
830 source_set("net_utility_services") {
831 sources = [
sammc6ac3fe52015-02-25 06:00:28832 "dns/host_resolver_mojo.cc",
833 "dns/host_resolver_mojo.h",
sammcc804b532015-03-12 10:02:34834 "proxy/load_state_change_coalescer.cc",
835 "proxy/load_state_change_coalescer.h",
sammc352f7492015-02-25 09:45:24836 "proxy/mojo_proxy_resolver_factory_impl.cc",
837 "proxy/mojo_proxy_resolver_factory_impl.h",
sammc5403aa1d2015-02-25 04:59:21838 "proxy/mojo_proxy_resolver_impl.cc",
839 "proxy/mojo_proxy_resolver_impl.h",
840 ]
841
rockot9509ec82015-04-14 02:50:56842 deps = [
843 ":net_with_v8",
844 ]
845
sammc5403aa1d2015-02-25 04:59:21846 public_deps = [
847 ":mojo_type_converters",
848 ":net",
849 "//mojo/common",
850 "//net/interfaces",
851 "//third_party/mojo/src/mojo/public/cpp/bindings",
852 ]
853 }
amistry7e6ebfdc82015-02-13 04:19:11854}
855
[email protected]8603c5de2014-04-16 20:34:31856if (!is_ios && !is_android) {
857 executable("crash_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:24858 testonly = true
scottmg34fb7e52014-12-03 23:27:24859 sources = [
860 "tools/crash_cache/crash_cache.cc",
861 ]
dpranke43276212015-02-20 02:55:19862
brettwd1c719a2015-02-19 23:17:04863 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
864 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:31865 deps = [
866 ":net",
[email protected]b2b2bf52014-05-28 20:26:57867 ":test_support",
[email protected]8603c5de2014-04-16 20:34:31868 "//base",
869 ]
870 }
871
872 executable("crl_set_dump") {
Brett Wilson8f80ad0b2014-09-08 19:50:24873 testonly = true
scottmg34fb7e52014-12-03 23:27:24874 sources = [
875 "tools/crl_set_dump/crl_set_dump.cc",
876 ]
dpranke43276212015-02-20 02:55:19877
brettwd1c719a2015-02-19 23:17:04878 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
879 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:31880 deps = [
881 ":net",
882 "//base",
883 ]
884 }
885
886 executable("dns_fuzz_stub") {
Brett Wilson8f80ad0b2014-09-08 19:50:24887 testonly = true
scottmg34fb7e52014-12-03 23:27:24888 sources = [
889 "tools/dns_fuzz_stub/dns_fuzz_stub.cc",
890 ]
dpranke43276212015-02-20 02:55:19891
brettwd1c719a2015-02-19 23:17:04892 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
893 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:31894 deps = [
895 ":net",
896 "//base",
897 ]
898 }
899
900 executable("gdig") {
Brett Wilson8f80ad0b2014-09-08 19:50:24901 testonly = true
[email protected]8603c5de2014-04-16 20:34:31902 sources = [
903 "tools/gdig/file_net_log.cc",
904 "tools/gdig/gdig.cc",
905 ]
906 deps = [
907 ":net",
908 "//base",
909 ]
910 }
911
912 executable("get_server_time") {
Brett Wilson8f80ad0b2014-09-08 19:50:24913 testonly = true
scottmg34fb7e52014-12-03 23:27:24914 sources = [
915 "tools/get_server_time/get_server_time.cc",
916 ]
dpranke43276212015-02-20 02:55:19917
brettwd1c719a2015-02-19 23:17:04918 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
919 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:31920 deps = [
921 ":net",
922 "//base",
923 "//base:i18n",
924 "//url",
925 ]
926 }
927
rockot9c67e5f2015-03-12 20:01:21928 executable("hpack_example_generator") {
929 testonly = true
930 sources = [
931 "spdy/fuzzing/hpack_example_generator.cc",
932 ]
933
934 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
935 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
936 deps = [
937 "//base",
938 ":net",
939 ]
940 }
941
942 executable("hpack_fuzz_mutator") {
943 testonly = true
944 sources = [
945 "spdy/fuzzing/hpack_fuzz_mutator.cc",
946 ]
947
948 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
949 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
950 deps = [
951 "//base",
952 ":net",
953 ]
954 }
955
956 executable("hpack_fuzz_wrapper") {
957 testonly = true
958 sources = [
959 "spdy/fuzzing/hpack_fuzz_wrapper.cc",
960 ]
961
962 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
963 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
964 deps = [
965 "//base",
966 ":net",
967 ]
968 }
969
[email protected]8603c5de2014-04-16 20:34:31970 if (use_v8_in_net) {
971 executable("net_watcher") {
Brett Wilson8f80ad0b2014-09-08 19:50:24972 testonly = true
scottmg34fb7e52014-12-03 23:27:24973 sources = [
974 "tools/net_watcher/net_watcher.cc",
975 ]
[email protected]8603c5de2014-04-16 20:34:31976 deps = [
977 ":net",
978 ":net_with_v8",
979 "//base",
980 ]
981
mukai77f8210a2014-10-07 16:35:14982 if (is_desktop_linux) {
[email protected]22fe91d2014-08-12 17:07:12983 configs += [
984 "//build/config/linux:gconf",
985 "//build/config/linux:glib",
986 ]
[email protected]8603c5de2014-04-16 20:34:31987 deps += [ "//build/config/linux:gio" ]
988 }
989 }
990 }
991
992 executable("run_testserver") {
Brett Wilson8f80ad0b2014-09-08 19:50:24993 testonly = true
scottmg34fb7e52014-12-03 23:27:24994 sources = [
995 "tools/testserver/run_testserver.cc",
996 ]
[email protected]8603c5de2014-04-16 20:34:31997 deps = [
998 ":net", # TODO(brettw) bug 363749: this shouldn't be necessary. It's not
999 # in the GYP build, and can be removed when the bug is fixed.
rockot9c67e5f2015-03-12 20:01:211000
[email protected]b2b2bf52014-05-28 20:26:571001 ":test_support",
[email protected]8603c5de2014-04-16 20:34:311002 "//base",
1003 "//base/test:test_support",
1004 "//testing/gtest",
1005 ]
1006 }
1007
1008 executable("stress_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:241009 testonly = true
scottmg34fb7e52014-12-03 23:27:241010 sources = [
rvargase23fcf652015-03-04 19:59:221011 "tools/stress_cache/stress_cache.cc",
scottmg34fb7e52014-12-03 23:27:241012 ]
dpranke43276212015-02-20 02:55:191013
brettwd1c719a2015-02-19 23:17:041014 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1015 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:311016 deps = [
1017 ":net",
[email protected]b2b2bf52014-05-28 20:26:571018 ":test_support",
[email protected]8603c5de2014-04-16 20:34:311019 "//base",
1020 ]
1021 }
1022
1023 executable("tld_cleanup") {
scottmg34fb7e52014-12-03 23:27:241024 sources = [
1025 "tools/tld_cleanup/tld_cleanup.cc",
1026 ]
dpranke43276212015-02-20 02:55:191027
brettwd1c719a2015-02-19 23:17:041028 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1029 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
[email protected]8603c5de2014-04-16 20:34:311030 deps = [
1031 "//base",
1032 "//base:i18n",
1033 "//net/tools/tld_cleanup",
1034 ]
1035 }
1036}
1037
rch6983a3f2015-03-30 03:47:281038if (is_linux) {
[email protected]8a3f8242014-06-05 18:05:121039 static_library("epoll_server") {
[email protected]8603c5de2014-04-16 20:34:311040 sources = [
1041 "tools/epoll_server/epoll_server.cc",
1042 "tools/epoll_server/epoll_server.h",
1043 ]
1044 deps = [
1045 ":net",
1046 "//base",
1047 ]
1048 }
1049
[email protected]8a3f8242014-06-05 18:05:121050 static_library("flip_in_mem_edsm_server_base") {
Brett Wilson8f80ad0b2014-09-08 19:50:241051 testonly = true
[email protected]8603c5de2014-04-16 20:34:311052 sources = [
1053 "tools/dump_cache/url_to_filename_encoder.cc",
1054 "tools/dump_cache/url_to_filename_encoder.h",
[email protected]8603c5de2014-04-16 20:34:311055 "tools/dump_cache/url_utilities.cc",
satorux933fc7a2015-02-13 07:09:101056 "tools/dump_cache/url_utilities.h",
[email protected]8603c5de2014-04-16 20:34:311057 "tools/flip_server/acceptor_thread.cc",
satorux933fc7a2015-02-13 07:09:101058 "tools/flip_server/acceptor_thread.h",
1059 "tools/flip_server/constants.h",
[email protected]8603c5de2014-04-16 20:34:311060 "tools/flip_server/create_listener.cc",
1061 "tools/flip_server/create_listener.h",
[email protected]8603c5de2014-04-16 20:34:311062 "tools/flip_server/flip_config.cc",
1063 "tools/flip_server/flip_config.h",
1064 "tools/flip_server/http_interface.cc",
1065 "tools/flip_server/http_interface.h",
1066 "tools/flip_server/loadtime_measurement.h",
[email protected]8603c5de2014-04-16 20:34:311067 "tools/flip_server/mem_cache.cc",
satorux933fc7a2015-02-13 07:09:101068 "tools/flip_server/mem_cache.h",
[email protected]8603c5de2014-04-16 20:34:311069 "tools/flip_server/output_ordering.cc",
1070 "tools/flip_server/output_ordering.h",
1071 "tools/flip_server/ring_buffer.cc",
1072 "tools/flip_server/ring_buffer.h",
1073 "tools/flip_server/sm_connection.cc",
1074 "tools/flip_server/sm_connection.h",
1075 "tools/flip_server/sm_interface.h",
[email protected]8603c5de2014-04-16 20:34:311076 "tools/flip_server/spdy_interface.cc",
1077 "tools/flip_server/spdy_interface.h",
satorux933fc7a2015-02-13 07:09:101078 "tools/flip_server/spdy_ssl.cc",
1079 "tools/flip_server/spdy_ssl.h",
[email protected]8603c5de2014-04-16 20:34:311080 "tools/flip_server/spdy_util.cc",
1081 "tools/flip_server/spdy_util.h",
1082 "tools/flip_server/streamer_interface.cc",
1083 "tools/flip_server/streamer_interface.h",
1084 ]
1085 deps = [
1086 ":balsa",
1087 ":epoll_server",
1088 ":net",
1089 "//base",
[email protected]edfd0f42014-07-22 18:20:371090 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:311091 ]
1092 }
1093
1094 executable("flip_in_mem_edsm_server_unittests") {
Brett Wilson8f80ad0b2014-09-08 19:50:241095 testonly = true
[email protected]8603c5de2014-04-16 20:34:311096 sources = [
1097 "tools/flip_server/flip_test_utils.cc",
1098 "tools/flip_server/flip_test_utils.h",
1099 "tools/flip_server/http_interface_test.cc",
1100 "tools/flip_server/mem_cache_test.cc",
1101 "tools/flip_server/run_all_tests.cc",
1102 "tools/flip_server/spdy_interface_test.cc",
1103 ]
1104 deps = [
brettwbc44c0a92015-02-20 22:30:391105 ":balsa",
[email protected]8603c5de2014-04-16 20:34:311106 ":flip_in_mem_edsm_server_base",
1107 ":net",
[email protected]b2b2bf52014-05-28 20:26:571108 ":test_support",
[email protected]8603c5de2014-04-16 20:34:311109 "//testing/gtest",
1110 "//testing/gmock",
[email protected]edfd0f42014-07-22 18:20:371111 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:311112 ]
1113 }
1114
1115 executable("flip_in_mem_edsm_server") {
Brett Wilson8f80ad0b2014-09-08 19:50:241116 testonly = true
scottmg34fb7e52014-12-03 23:27:241117 sources = [
1118 "tools/flip_server/flip_in_mem_edsm_server.cc",
1119 ]
[email protected]8603c5de2014-04-16 20:34:311120 deps = [
brettwbc44c0a92015-02-20 22:30:391121 ":balsa",
[email protected]8603c5de2014-04-16 20:34:311122 ":flip_in_mem_edsm_server_base",
1123 ":net",
1124 "//base",
1125 ]
1126 }
1127
rch216445c2015-03-27 00:23:281128 source_set("epoll_quic_tools") {
[email protected]8603c5de2014-04-16 20:34:311129 sources = [
1130 "tools/quic/quic_client.cc",
1131 "tools/quic/quic_client.h",
[email protected]8603c5de2014-04-16 20:34:311132 "tools/quic/quic_default_packet_writer.cc",
1133 "tools/quic/quic_default_packet_writer.h",
[email protected]8603c5de2014-04-16 20:34:311134 "tools/quic/quic_epoll_clock.cc",
1135 "tools/quic/quic_epoll_clock.h",
1136 "tools/quic/quic_epoll_connection_helper.cc",
1137 "tools/quic/quic_epoll_connection_helper.h",
rtennetifb3fa6c2015-03-16 23:04:551138 "tools/quic/quic_packet_reader.cc",
1139 "tools/quic/quic_packet_reader.h",
[email protected]8603c5de2014-04-16 20:34:311140 "tools/quic/quic_packet_writer_wrapper.cc",
1141 "tools/quic/quic_packet_writer_wrapper.h",
1142 "tools/quic/quic_server.cc",
1143 "tools/quic/quic_server.h",
[email protected]8603c5de2014-04-16 20:34:311144 "tools/quic/quic_socket_utils.cc",
1145 "tools/quic/quic_socket_utils.h",
[email protected]8603c5de2014-04-16 20:34:311146 ]
1147 deps = [
1148 ":balsa",
1149 ":epoll_server",
1150 ":net",
rtennetib6f1c0d2015-04-03 17:52:061151 ":net_quic_proto",
[email protected]8603c5de2014-04-16 20:34:311152 "//base",
1153 "//base/third_party/dynamic_annotations",
1154 "//crypto",
[email protected]edfd0f42014-07-22 18:20:371155 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:311156 "//url",
1157 ]
1158 }
1159
rch216445c2015-03-27 00:23:281160 executable("epoll_quic_client") {
scottmg34fb7e52014-12-03 23:27:241161 sources = [
1162 "tools/quic/quic_client_bin.cc",
1163 ]
[email protected]8603c5de2014-04-16 20:34:311164 deps = [
brettwbc44c0a92015-02-20 22:30:391165 ":balsa",
1166 ":epoll_server",
rch216445c2015-03-27 00:23:281167 ":epoll_quic_tools",
1168 ":net",
1169 ":simple_quic_tools",
1170 "//base",
1171 "//third_party/boringssl",
1172 ]
1173 }
1174
1175 executable("epoll_quic_server") {
1176 sources = [
1177 "tools/quic/quic_server_bin.cc",
1178 ]
1179 deps = [
1180 ":balsa",
1181 ":epoll_server",
1182 ":epoll_quic_tools",
[email protected]8603c5de2014-04-16 20:34:311183 ":net",
rtennetib6f1c0d2015-04-03 17:52:061184 ":net_quic_proto",
rchda78df5a2015-03-22 05:16:371185 ":simple_quic_tools",
[email protected]8603c5de2014-04-16 20:34:311186 "//base",
[email protected]edfd0f42014-07-22 18:20:371187 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:311188 ]
1189 }
[email protected]8603c5de2014-04-16 20:34:311190}
1191
[email protected]ef0eb442014-05-15 09:32:181192if (is_android) {
1193 generate_jni("net_jni_headers") {
1194 sources = [
1195 "android/java/src/org/chromium/net/AndroidCertVerifyResult.java",
1196 "android/java/src/org/chromium/net/AndroidKeyStore.java",
1197 "android/java/src/org/chromium/net/AndroidNetworkLibrary.java",
1198 "android/java/src/org/chromium/net/AndroidPrivateKey.java",
1199 "android/java/src/org/chromium/net/GURLUtils.java",
1200 "android/java/src/org/chromium/net/NetworkChangeNotifier.java",
1201 "android/java/src/org/chromium/net/ProxyChangeListener.java",
1202 "android/java/src/org/chromium/net/X509Util.java",
1203 ]
1204 jni_package = "net"
1205 }
cjhopmandad5f4272014-09-05 01:00:551206 generate_jni("net_test_jni_headers") {
1207 sources = [
1208 "android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java",
1209 ]
1210 jni_package = "net"
1211 }
[email protected]ef0eb442014-05-15 09:32:181212}
[email protected]8603c5de2014-04-16 20:34:311213
1214if (is_android || is_linux) {
1215 executable("disk_cache_memory_test") {
Brett Wilson8f80ad0b2014-09-08 19:50:241216 testonly = true
scottmg34fb7e52014-12-03 23:27:241217 sources = [
1218 "tools/disk_cache_memory_test/disk_cache_memory_test.cc",
1219 ]
[email protected]8603c5de2014-04-16 20:34:311220 deps = [
1221 ":net",
1222 "//base",
1223 ]
1224 }
1225}
[email protected]8a3f8242014-06-05 18:05:121226
rch47ad01f2015-03-20 21:17:231227source_set("simple_quic_tools") {
rcha9d12ce12015-03-19 23:06:491228 sources = [
rched113b22015-03-26 04:54:051229 "tools/quic/quic_client_session.cc",
1230 "tools/quic/quic_client_session.h",
rchc99f380c2015-03-26 19:50:561231 "tools/quic/quic_dispatcher.cc",
1232 "tools/quic/quic_dispatcher.h",
rch0e945472015-03-26 15:19:211233 "tools/quic/quic_in_memory_cache.cc",
1234 "tools/quic/quic_in_memory_cache.h",
rchc99f380c2015-03-26 19:50:561235 "tools/quic/quic_per_connection_packet_writer.cc",
1236 "tools/quic/quic_per_connection_packet_writer.h",
rch0e945472015-03-26 15:19:211237 "tools/quic/quic_server_session.cc",
1238 "tools/quic/quic_server_session.h",
rcha9d12ce12015-03-19 23:06:491239 "tools/quic/quic_simple_client.cc",
1240 "tools/quic/quic_simple_client.h",
rch216445c2015-03-27 00:23:281241 "tools/quic/quic_simple_per_connection_packet_writer.cc",
1242 "tools/quic/quic_simple_per_connection_packet_writer.h",
1243 "tools/quic/quic_simple_server.cc",
1244 "tools/quic/quic_simple_server.h",
1245 "tools/quic/quic_simple_server_packet_writer.cc",
1246 "tools/quic/quic_simple_server_packet_writer.h",
rched113b22015-03-26 04:54:051247 "tools/quic/quic_spdy_client_stream.cc",
1248 "tools/quic/quic_spdy_client_stream.h",
rch0e945472015-03-26 15:19:211249 "tools/quic/quic_spdy_server_stream.cc",
1250 "tools/quic/quic_spdy_server_stream.h",
1251 "tools/quic/quic_time_wait_list_manager.cc",
1252 "tools/quic/quic_time_wait_list_manager.h",
rchda78df5a2015-03-22 05:16:371253 "tools/quic/synchronous_host_resolver.cc",
1254 "tools/quic/synchronous_host_resolver.h",
rcha9d12ce12015-03-19 23:06:491255 ]
1256 deps = [
1257 ":net",
rtennetib6f1c0d2015-04-03 17:52:061258 ":net_quic_proto",
rcha9d12ce12015-03-19 23:06:491259 "//base",
rch47ad01f2015-03-20 21:17:231260 "//base/third_party/dynamic_annotations",
1261 "//url",
1262 ]
1263}
1264
rch216445c2015-03-27 00:23:281265executable("quic_client") {
rch47ad01f2015-03-20 21:17:231266 sources = [
1267 "tools/quic/quic_simple_client_bin.cc",
1268 ]
1269 deps = [
1270 ":net",
1271 ":simple_quic_tools",
1272 "//base",
rcha9d12ce12015-03-19 23:06:491273 "//url",
1274 ]
1275}
1276
rch216445c2015-03-27 00:23:281277executable("quic_server") {
1278 sources = [
1279 "tools/quic/quic_simple_server_bin.cc",
1280 ]
1281 deps = [
1282 ":net",
rtennetib6f1c0d2015-04-03 17:52:061283 ":net_quic_proto",
rch216445c2015-03-27 00:23:281284 ":simple_quic_tools",
1285 "//base",
1286 "//third_party/boringssl",
1287 ]
1288}
1289
[email protected]8a3f8242014-06-05 18:05:121290# TODO(GYP) make this compile on Android, we need some native test deps done.
dprankecf8465db72014-11-10 23:51:221291# TODO(GYP) Also doesn't work on Mac, need to figure out why not.
brettw690c96672015-04-21 16:19:541292if (!is_android && !is_mac) {
scottmg34fb7e52014-12-03 23:27:241293 test("net_unittests") {
1294 sources = gypi_values.net_test_sources
erikchen006a7cf2014-12-03 22:27:111295
brettwd1c719a2015-02-19 23:17:041296 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1297 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
scottmg34fb7e52014-12-03 23:27:241298 defines = []
[email protected]8a3f8242014-06-05 18:05:121299
scottmg34fb7e52014-12-03 23:27:241300 deps = [
brettw690c96672015-04-21 16:19:541301 ":balsa",
scottmg34fb7e52014-12-03 23:27:241302 ":extras",
1303 ":http_server",
1304 ":net",
rtennetib6f1c0d2015-04-03 17:52:061305 ":net_quic_proto",
rcha6d42cd2015-03-22 05:13:581306 ":simple_quic_tools",
scottmg34fb7e52014-12-03 23:27:241307 ":test_support",
1308 "//base",
1309 "//base:i18n",
1310 "//base:prefs_test_support",
1311 "//base/allocator",
1312 "//base/third_party/dynamic_annotations",
1313 "//crypto",
1314 "//crypto:platform",
1315 "//crypto:test_support",
brettwbc44c0a92015-02-20 22:30:391316 "//gin",
scottmg34fb7e52014-12-03 23:27:241317 "//net/base/registry_controlled_domains",
brettwbc44c0a92015-02-20 22:30:391318 "//sql",
scottmg34fb7e52014-12-03 23:27:241319 "//testing/gmock",
1320 "//testing/gtest",
1321 "//third_party/zlib",
1322 "//url",
[email protected]8a3f8242014-06-05 18:05:121323 ]
[email protected]8a3f8242014-06-05 18:05:121324
brettw690c96672015-04-21 16:19:541325 if (is_desktop_linux) {
1326 deps += [ ":epoll_quic_tools" ]
1327 }
scottmg34fb7e52014-12-03 23:27:241328 if (is_linux) {
1329 sources += gypi_values.net_linux_test_sources
1330 deps += [
1331 ":balsa",
1332 ":epoll_server",
1333 ":flip_in_mem_edsm_server_base",
rch216445c2015-03-27 00:23:281334 ":epoll_quic_tools",
[email protected]b2f44d12014-06-10 17:48:031335 ]
1336 }
[email protected]8a3f8242014-06-05 18:05:121337
scottmg34fb7e52014-12-03 23:27:241338 if (is_mac || is_ios) {
1339 sources += gypi_values.net_base_test_mac_ios_sources
1340 }
1341
brettwc859f18f2014-09-18 23:34:501342 if (is_chromeos) {
scottmg34fb7e52014-12-03 23:27:241343 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ]
1344 }
1345
1346 if (is_android) {
brettwc859f18f2014-09-18 23:34:501347 sources -= [
scottmg34fb7e52014-12-03 23:27:241348 # See bug http://crbug.com/344533.
1349 "disk_cache/blockfile/index_table_v3_unittest.cc",
1350
1351 # No res_ninit() et al on Android, so this doesn't make a lot of
1352 # sense.
1353 "dns/dns_config_service_posix_unittest.cc",
1354 ]
1355 deps += [
1356 ":net_javatests", # FIXME(brettw)
1357 ":net_test_jni_headers",
brettwc859f18f2014-09-18 23:34:501358 ]
1359 }
scottmg34fb7e52014-12-03 23:27:241360
rmcilroy5837d332014-12-17 14:30:581361 if (v8_use_external_startup_data) {
1362 deps += [ "//gin" ]
1363 }
1364
scottmg34fb7e52014-12-03 23:27:241365 if (!use_nss_certs) {
davidben2bcbc6b2015-04-22 02:36:411366 sources -= [
1367 "cert/nss_cert_database_unittest.cc",
1368 "ssl/client_cert_store_nss_unittest.cc",
1369 ]
scottmg34fb7e52014-12-03 23:27:241370 if (is_chromeos) { # Already removed for all non-ChromeOS builds.
davidben2bcbc6b2015-04-22 02:36:411371 sources -= [
1372 "cert/nss_cert_database_chromeos_unittest.cc",
1373 "cert/nss_profile_filter_chromeos_unittest.cc",
1374 "ssl/client_cert_store_chromeos_unittest.cc",
1375 ]
scottmg34fb7e52014-12-03 23:27:241376 }
1377 }
1378
1379 if (use_openssl) {
1380 # When building for OpenSSL, we need to exclude NSS specific tests
1381 # or functionality not supported by OpenSSL yet.
1382 # TODO(bulach): Add equivalent tests when the underlying
1383 # functionality is ported to OpenSSL.
1384 sources -= [
scottmg34fb7e52014-12-03 23:27:241385 "cert/x509_util_nss_unittest.cc",
1386 "quic/test_tools/crypto_test_utils_nss.cc",
1387 ]
scottmg34fb7e52014-12-03 23:27:241388 } else {
1389 sources -= [
1390 "cert/x509_util_openssl_unittest.cc",
1391 "quic/test_tools/crypto_test_utils_openssl.cc",
1392 "socket/ssl_client_socket_openssl_unittest.cc",
davidbendafe4e52015-04-08 22:53:521393 "ssl/ssl_client_session_cache_openssl_unittest.cc",
scottmg34fb7e52014-12-03 23:27:241394 ]
scottmg34fb7e52014-12-03 23:27:241395 }
1396
1397 if (use_kerberos) {
1398 defines += [ "USE_KERBEROS" ]
1399 } else {
1400 sources -= [
1401 "http/http_auth_gssapi_posix_unittest.cc",
1402 "http/http_auth_handler_negotiate_unittest.cc",
1403 "http/mock_gssapi_library_posix.cc",
1404 "http/mock_gssapi_library_posix.h",
1405 ]
1406 }
1407
1408 if (use_openssl || (!is_desktop_linux && !is_chromeos && !is_ios)) {
1409 # Only include this test when on Posix and using NSS for
1410 # cert verification or on iOS (which also uses NSS for certs).
eromaned744f32015-04-09 06:35:491411 sources -= [ "cert_net/nss_ocsp_unittest.cc" ]
scottmg34fb7e52014-12-03 23:27:241412 }
1413
1414 if (!use_openssl_certs) {
1415 sources -= [ "ssl/openssl_client_key_store_unittest.cc" ]
1416 }
1417
1418 if (!enable_websockets) {
1419 sources -= [
dgozmana6e70092014-12-12 14:46:211420 "server/http_connection_unittest.cc",
1421 "server/http_server_response_info_unittest.cc",
1422 "server/http_server_unittest.cc",
1423 "server/web_socket_encoder_unittest.cc",
scottmg34fb7e52014-12-03 23:27:241424 "websockets/websocket_basic_stream_test.cc",
1425 "websockets/websocket_channel_test.cc",
1426 "websockets/websocket_deflate_predictor_impl_test.cc",
1427 "websockets/websocket_deflate_stream_test.cc",
1428 "websockets/websocket_deflater_test.cc",
ricea433bdab2015-01-26 07:25:371429 "websockets/websocket_end_to_end_test.cc",
satorux933fc7a2015-02-13 07:09:101430 "websockets/websocket_errors_test.cc",
scottmg34fb7e52014-12-03 23:27:241431 "websockets/websocket_extension_parser_test.cc",
1432 "websockets/websocket_frame_parser_test.cc",
1433 "websockets/websocket_frame_test.cc",
1434 "websockets/websocket_handshake_challenge_test.cc",
1435 "websockets/websocket_handshake_stream_create_helper_test.cc",
1436 "websockets/websocket_inflater_test.cc",
1437 "websockets/websocket_stream_test.cc",
1438 "websockets/websocket_test_util.cc",
1439 "websockets/websocket_test_util.h",
1440 ]
dgozmana6e70092014-12-12 14:46:211441 deps -= [ ":http_server" ]
scottmg34fb7e52014-12-03 23:27:241442 }
1443
1444 if (disable_file_support) {
1445 sources -= [
1446 "base/directory_lister_unittest.cc",
1447 "url_request/url_request_file_job_unittest.cc",
1448 ]
1449 }
1450
1451 if (disable_ftp_support) {
1452 sources -= [
1453 "ftp/ftp_auth_cache_unittest.cc",
1454 "ftp/ftp_ctrl_response_buffer_unittest.cc",
1455 "ftp/ftp_directory_listing_parser_ls_unittest.cc",
1456 "ftp/ftp_directory_listing_parser_netware_unittest.cc",
1457 "ftp/ftp_directory_listing_parser_os2_unittest.cc",
1458 "ftp/ftp_directory_listing_parser_unittest.cc",
1459 "ftp/ftp_directory_listing_parser_unittest.h",
1460 "ftp/ftp_directory_listing_parser_vms_unittest.cc",
1461 "ftp/ftp_directory_listing_parser_windows_unittest.cc",
1462 "ftp/ftp_network_transaction_unittest.cc",
1463 "ftp/ftp_util_unittest.cc",
1464 "url_request/url_request_ftp_job_unittest.cc",
1465 ]
1466 }
1467
1468 if (!enable_built_in_dns) {
1469 sources -= [
1470 "dns/address_sorter_posix_unittest.cc",
1471 "dns/address_sorter_unittest.cc",
1472 ]
1473 }
1474
1475 # Always need use_v8_in_net to be 1 to run on Android, so just remove
1476 # net_unittest's dependency on v8 when using icu alternatives instead of
1477 # setting use_v8_in_net to 0.
1478 if (use_v8_in_net && !use_icu_alternatives_on_android) {
1479 deps += [ ":net_with_v8" ]
1480 } else {
1481 sources -= [
scottmg34fb7e52014-12-03 23:27:241482 "proxy/proxy_resolver_v8_tracing_unittest.cc",
satorux933fc7a2015-02-13 07:09:101483 "proxy/proxy_resolver_v8_unittest.cc",
scottmg34fb7e52014-12-03 23:27:241484 ]
1485 }
1486
amistry7e6ebfdc82015-02-13 04:19:111487 if (use_v8_in_net && !is_android) {
1488 deps += [
1489 ":net_browser_services",
sammc5403aa1d2015-02-25 04:59:211490 ":net_utility_services",
amistry7e6ebfdc82015-02-13 04:19:111491 "//mojo/environment:chromium",
1492 "//third_party/mojo/src/mojo/edk/system",
1493 ]
1494 } else {
sammc5403aa1d2015-02-25 04:59:211495 sources -= [
sammc6ac3fe52015-02-25 06:00:281496 "dns/host_resolver_mojo_unittest.cc",
sammc5403aa1d2015-02-25 04:59:211497 "dns/mojo_host_resolver_impl_unittest.cc",
sammcc804b532015-03-12 10:02:341498 "proxy/load_state_change_coalescer_unittest.cc",
sammc352f7492015-02-25 09:45:241499 "proxy/mojo_proxy_resolver_factory_impl_unittest.cc",
sammc5403aa1d2015-02-25 04:59:211500 "proxy/mojo_proxy_resolver_impl_unittest.cc",
amistry07ff1402015-03-10 07:34:071501 "proxy/proxy_resolver_mojo_unittest.cc",
amistry6e1ed1b2015-03-12 05:24:011502 "proxy/proxy_service_mojo_unittest.cc",
sammc5403aa1d2015-02-25 04:59:211503 ]
amistry7e6ebfdc82015-02-13 04:19:111504 }
1505
scottmg34fb7e52014-12-03 23:27:241506 if (!enable_mdns) {
1507 sources -= [
1508 "dns/mdns_cache_unittest.cc",
1509 "dns/mdns_client_unittest.cc",
1510 "dns/record_parsed_unittest.cc",
1511 "dns/record_rdata_unittest.cc",
1512 ]
1513 }
1514
1515 if (is_ios) {
1516 # TODO(GYP)
1517 # 'actions': [
1518 # {
1519 # 'action_name': 'copy_test_data',
1520 # 'variables': {
1521 # 'test_data_files': [
1522 # 'data/ssl/certificates/',
1523 # 'data/test.html',
1524 # 'data/url_request_unittest/',
1525 # ],
1526 # 'test_data_prefix': 'net',
1527 # },
1528 # 'includes': [ '../build/copy_test_data_ios.gypi' ],
1529 # },
1530 # ],
1531 sources -= [
1532 # TODO(droger): The following tests are disabled because the
1533 # implementation is missing or incomplete.
1534 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS.
1535 "base/keygen_handler_unittest.cc",
1536 "disk_cache/backend_unittest.cc",
1537 "disk_cache/blockfile/block_files_unittest.cc",
1538
1539 # Need to read input data files.
1540 "filter/gzip_filter_unittest.cc",
1541 "socket/ssl_server_socket_unittest.cc",
1542 "spdy/fuzzing/hpack_fuzz_util_test.cc",
1543
1544 # Need TestServer.
eroman0fad62b2015-04-08 18:54:111545 "cert_net/cert_net_fetcher_impl_unittest.cc",
scottmg34fb7e52014-12-03 23:27:241546 "proxy/proxy_script_fetcher_impl_unittest.cc",
1547 "socket/ssl_client_socket_unittest.cc",
1548 "url_request/url_fetcher_impl_unittest.cc",
1549 "url_request/url_request_context_builder_unittest.cc",
1550
1551 # Needs GetAppOutput().
1552 "test/python_utils_unittest.cc",
1553
1554 # The following tests are disabled because they don't apply to
1555 # iOS.
1556 # OS is not "linux" or "freebsd" or "openbsd".
1557 "socket/unix_domain_client_socket_posix_unittest.cc",
1558 "socket/unix_domain_listen_socket_posix_unittest.cc",
1559 "socket/unix_domain_server_socket_posix_unittest.cc",
1560
1561 # See bug http://crbug.com/344533.
1562 "disk_cache/blockfile/index_table_v3_unittest.cc",
1563 ]
1564 }
1565
1566 if (is_android) {
1567 sources -= [ "dns/dns_config_service_posix_unittest.cc" ]
1568
1569 # TODO(GYP)
1570 # # TODO(mmenke): This depends on test_support_base, which depends on
1571 # # icu. Figure out a way to remove that dependency.
1572 # 'dependencies': [
1573 # '../testing/android/native_test.gyp:native_test_native_code',
1574 # ]
1575
1576 set_sources_assignment_filter([])
1577 sources += [ "base/address_tracker_linux_unittest.cc" ]
1578 set_sources_assignment_filter(sources_assignment_filter)
1579 }
1580
1581 if (use_icu_alternatives_on_android) {
1582 sources -= [
1583 "base/filename_util_unittest.cc",
1584 "base/net_util_icu_unittest.cc",
1585 ]
1586 deps -= [ "//base:i18n" ]
[email protected]8a3f8242014-06-05 18:05:121587 }
1588 }
dougke0f2b8f2015-03-16 22:40:331589} # !is_android && !is_win && !is_mac
[email protected]8a3f8242014-06-05 18:05:121590
rockot9c67e5f2015-03-12 20:01:211591executable("net_perftests") {
1592 testonly = true
1593 sources = [
1594 "cookies/cookie_monster_perftest.cc",
1595 "disk_cache/blockfile/disk_cache_perftest.cc",
1596 "proxy/proxy_resolver_perftest.cc",
1597 "udp/udp_socket_perftest.cc",
1598 ]
1599
1600 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1601 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1602 deps = [
1603 "//base",
1604 "//base:i18n",
1605 "//base/test:test_support_perf",
1606 "//testing/gtest",
1607 "//url",
1608 ":net",
1609 ":test_support",
1610 ]
1611
1612 if (enable_websockets) {
1613 sources += [ "websockets/websocket_frame_perftest.cc" ]
1614 }
1615
1616 if (use_v8_in_net) {
1617 deps += [ ":net_with_v8" ]
1618 } else {
1619 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1620 }
1621
1622 if (is_win && icu_use_data_file) {
1623 # This is needed to trigger the dll copy step on windows.
1624 # TODO(mark): Specifying this here shouldn't be necessary.
1625 deps += [ "//third_party/icu:icudata" ]
1626 }
1627}