Move MatchPattern to its own header and the base namespace.
[chromium-blink-merge.git] / net / BUILD.gn
blob8454d7a0cd5241c6321ac5bffea7040e29aefc36
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
3 # found in the LICENSE file.
5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni")
7 import("//build/config/ui.gni")
8 import("//build/module_args/v8.gni")
9 import("//url/config.gni")
10 import("//testing/test.gni")
11 import("//third_party/icu/config.gni")
12 import("//third_party/protobuf/proto_library.gni")
14 # 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.
17 if (!is_android) {
18   import("//tools/grit/grit_rule.gni")
21 if (is_android) {
22   import("//build/config/android/config.gni")
23   import("//build/config/android/rules.gni")
24 } else if (is_mac) {
25   import("//build/config/mac/mac_sdk.gni")
28 # The list of net files is kept in net.gypi. Read it.
29 gypi_values = exec_script("//build/gypi_to_gn.py",
30                           [ rebase_path("net.gypi") ],
31                           "scope",
32                           [ "net.gypi" ])
34 # Disable Kerberos on ChromeOS, Android and iOS, at least for now. It needs
35 # configuration (krb5.conf and so on).
36 use_kerberos = !is_chromeos && !is_android && !is_ios
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.
43 posix_avoid_mmap = is_android && current_cpu != "x86"
45 # WebSockets and socket stream code are used everywhere except iOS.
46 enable_websockets = !is_ios
47 use_v8_in_net = !is_ios
48 enable_built_in_dns = !is_ios
49 disable_ftp_support = is_ios
51 declare_args() {
52   # Disables support for file URLs.  File URL support requires use of icu.
53   disable_file_support = false
56 config("net_config") {
57   defines = []
58   if (posix_avoid_mmap) {
59     defines += [ "POSIX_AVOID_MMAP" ]
60   }
61   if (disable_file_support) {
62     defines += [ "DISABLE_FILE_SUPPORT" ]
63   }
66 component("net") {
67   sources =
68       gypi_values.net_nacl_common_sources + gypi_values.net_non_nacl_sources
70   cflags = []
71   defines = [
72     # TODO(GYP) Note that the 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",
78     "NET_IMPLEMENTATION",
79   ]
81   # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
82   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
83   public_configs = [ ":net_config" ]
84   include_dirs = []
86   public_deps = [
87     ":net_quic_proto",
88     "//crypto",
89     "//crypto:platform",
90     "//url",
91   ]
92   deps = [
93     ":net_resources",
94     "//base",
95     "//base:prefs",
96     "//base/third_party/dynamic_annotations",
97     "//net/base/registry_controlled_domains",
98     "//sdch",
99     "//third_party/protobuf:protobuf_lite",
100     "//third_party/zlib",
101     "//url",
102   ]
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",
113       "http/http_auth_handler_negotiate.cc",
114       "http/http_auth_handler_negotiate.h",
115     ]
116   }
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   }
126   if (disable_file_support) {
127     sources -= [
128       "base/directory_lister.cc",
129       "base/directory_lister.h",
130       "url_request/file_protocol_handler.cc",
131       "url_request/file_protocol_handler.h",
132       "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",
136     ]
137   }
139   if (disable_ftp_support) {
140     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   }
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   }
189   if (use_openssl) {
190     sources -= [
191       "base/nss_memio.c",
192       "base/nss_memio.h",
193       "cert/ct_log_verifier_nss.cc",
194       "cert/ct_objects_extractor_nss.cc",
195       "cert/jwk_serializer_nss.cc",
196       "cert/scoped_nss_types.h",
197       "cert/x509_util_nss.cc",
198       "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",
212     ]
213     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",
218       ]
219     }
220     if (is_win) {
221       sources -= [ "cert/sha256_legacy_support_nss_win.cc" ]
222     }
223     if (!use_nss_certs && !is_ios) {
224       sources -= [ "cert/x509_util_nss.h" ]
225     }
226   } else {
227     sources -= [
228       "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",
246       "socket/ssl_server_socket_openssl.h",
247       "ssl/openssl_ssl_util.cc",
248       "ssl/openssl_ssl_util.h",
249       "ssl/ssl_client_session_cache_openssl.cc",
250       "ssl/ssl_client_session_cache_openssl.h",
251       "ssl/ssl_platform_key.h",
252       "ssl/threaded_ssl_private_key.cc",
253       "ssl/threaded_ssl_private_key.h",
254     ]
255     if (is_mac) {
256       sources -= [ "ssl/ssl_platform_key_mac.cc" ]
257     }
258     if (is_win) {
259       sources -= [
260         "cert/sha256_legacy_support_openssl_win.cc",
261         "ssl/ssl_platform_key_win.cc",
262       ]
263     }
264     if (use_nss_certs) {
265       sources -= [ "ssl/ssl_platform_key_nss.cc" ]
266     }
267   }
269   if (!use_openssl_certs) {
270     sources -= [
271       "base/crypto_module_openssl.cc",
272       "base/keygen_handler_openssl.cc",
273       "base/openssl_private_key_store.h",
274       "base/openssl_private_key_store_memory.cc",
275       "cert/cert_database_openssl.cc",
276       "cert/cert_verify_proc_openssl.cc",
277       "cert/cert_verify_proc_openssl.h",
278       "cert/test_root_certs_openssl.cc",
279       "cert/x509_certificate_openssl.cc",
280       "ssl/openssl_client_key_store.cc",
281       "ssl/openssl_client_key_store.h",
282     ]
283     if (is_android) {
284       sources -= [ "base/openssl_private_key_store_android.cc" ]
285     }
286   } else {
287     if (is_android) {
288       # Android doesn't use these even when using OpenSSL.
289       sources -= [
290         "base/openssl_private_key_store_memory.cc",
291         "cert/cert_database_openssl.cc",
292         "cert/cert_verify_proc_openssl.cc",
293         "cert/test_root_certs_openssl.cc",
294       ]
295     }
297     # TODO(davidben): Remove these exclusions when use_openssl_certs builds also
298     # use the SSLPrivateKey machinery.
299     sources -= [
300       "ssl/threaded_ssl_private_key.cc",
301       "ssl/threaded_ssl_private_key.h",
302     ]
303   }
305   if (use_glib && !is_chromeos) {
306     configs += [ "//build/config/linux:gconf" ]
307     deps += [ "//build/config/linux:gio" ]
308   }
310   if (is_linux) {
311     configs += [ "//build/config/linux:libresolv" ]
312   }
314   if (!use_nss_certs) {
315     sources -= [
316       "base/crypto_module_nss.cc",
317       "base/keygen_handler_nss.cc",
318       "cert/cert_database_nss.cc",
319       "cert/nss_cert_database.cc",
320       "cert/nss_cert_database.h",
321       "cert/x509_certificate_nss.cc",
322       "ssl/client_cert_store_nss.cc",
323       "ssl/client_cert_store_nss.h",
324       "third_party/mozilla_security_manager/nsKeygenHandler.cpp",
325       "third_party/mozilla_security_manager/nsKeygenHandler.h",
326       "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
327       "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
328       "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
329       "third_party/mozilla_security_manager/nsPKCS12Blob.h",
330     ]
331     if (!is_ios) {
332       # These files are part of the partial implementation of NSS on iOS so
333       # keep them in that case (even though use_nss_certs is not set).
334       sources -= [
335         "cert/cert_verify_proc_nss.cc",
336         "cert/cert_verify_proc_nss.h",
337         "cert/test_root_certs_nss.cc",
338         "cert/x509_util_nss_certs.cc",
339         "cert_net/nss_ocsp.cc",
340         "cert_net/nss_ocsp.h",
341       ]
342     }
343     if (is_chromeos) {
344       # These were already removed on non-ChromeOS.
345       sources -= [
346         "cert/nss_cert_database_chromeos.cc",
347         "cert/nss_cert_database_chromeos.h",
348         "cert/nss_profile_filter_chromeos.cc",
349         "cert/nss_profile_filter_chromeos.h",
350         "ssl/client_cert_store_chromeos.cc",
351         "ssl/client_cert_store_chromeos.h",
352       ]
353     }
354     sources -= [ "ssl/ssl_platform_key_nss.cc" ]
355   } else if (use_openssl) {
356     # client_cert_store_nss.c requires NSS_CmpCertChainWCANames from NSS's
357     # libssl, but our bundled copy is not built in OpenSSL ports. Pull that file
358     # in directly.
359     sources += [ "third_party/nss/ssl/cmpcert.c" ]
360   }
362   if (!enable_websockets) {
363     sources -= [
364       "websockets/websocket_basic_handshake_stream.cc",
365       "websockets/websocket_basic_handshake_stream.h",
366       "websockets/websocket_basic_stream.cc",
367       "websockets/websocket_basic_stream.h",
368       "websockets/websocket_channel.cc",
369       "websockets/websocket_channel.h",
370       "websockets/websocket_deflate_predictor.h",
371       "websockets/websocket_deflate_predictor_impl.cc",
372       "websockets/websocket_deflate_predictor_impl.h",
373       "websockets/websocket_deflate_stream.cc",
374       "websockets/websocket_deflate_stream.h",
375       "websockets/websocket_deflater.cc",
376       "websockets/websocket_deflater.h",
377       "websockets/websocket_errors.cc",
378       "websockets/websocket_errors.h",
379       "websockets/websocket_extension.cc",
380       "websockets/websocket_extension.h",
381       "websockets/websocket_extension_parser.cc",
382       "websockets/websocket_extension_parser.h",
383       "websockets/websocket_frame.cc",
384       "websockets/websocket_frame.h",
385       "websockets/websocket_frame_parser.cc",
386       "websockets/websocket_frame_parser.h",
387       "websockets/websocket_handshake_challenge.cc",
388       "websockets/websocket_handshake_challenge.h",
389       "websockets/websocket_handshake_constants.cc",
390       "websockets/websocket_handshake_constants.h",
391       "websockets/websocket_handshake_request_info.cc",
392       "websockets/websocket_handshake_request_info.h",
393       "websockets/websocket_handshake_response_info.cc",
394       "websockets/websocket_handshake_response_info.h",
395       "websockets/websocket_handshake_stream_base.h",
396       "websockets/websocket_handshake_stream_create_helper.cc",
397       "websockets/websocket_handshake_stream_create_helper.h",
398       "websockets/websocket_inflater.cc",
399       "websockets/websocket_inflater.h",
400       "websockets/websocket_mux.h",
401       "websockets/websocket_stream.cc",
402       "websockets/websocket_stream.h",
403     ]
404   }
406   if (!enable_mdns) {
407     sources -= [
408       "dns/mdns_cache.cc",
409       "dns/mdns_cache.h",
410       "dns/mdns_client.cc",
411       "dns/mdns_client.h",
412       "dns/mdns_client_impl.cc",
413       "dns/mdns_client_impl.h",
414       "dns/record_parsed.cc",
415       "dns/record_parsed.h",
416       "dns/record_rdata.cc",
417       "dns/record_rdata.h",
418     ]
419   }
421   if (is_win) {
422     sources -= [
423       "http/http_auth_handler_ntlm_portable.cc",
424       "socket/socket_libevent.cc",
425       "socket/socket_libevent.h",
426       "socket/tcp_socket_libevent.cc",
427       "socket/tcp_socket_libevent.h",
428       "udp/udp_socket_libevent.cc",
429       "udp/udp_socket_libevent.h",
430     ]
431   } else {  # !is_win
432     sources -= [
433       "base/winsock_init.cc",
434       "base/winsock_init.h",
435       "base/winsock_util.cc",
436       "base/winsock_util.h",
437       "proxy/proxy_resolver_winhttp.cc",
438       "proxy/proxy_resolver_winhttp.h",
439     ]
440   }
442   if (is_mac) {
443     libs = [
444       "Foundation.framework",
445       "Security.framework",
446       "SystemConfiguration.framework",
447       "resolv",
448     ]
449   }
451   if (is_ios) {
452     # Add back some sources that were otherwise filtered out. iOS needs some Mac
453     # files.
454     set_sources_assignment_filter([])
455     sources += [
456       "base/network_change_notifier_mac.cc",
457       "base/network_config_watcher_mac.cc",
458       "base/network_interfaces_mac.cc",
459       "base/network_interfaces_mac.h",
460       "base/platform_mime_util_mac.mm",
461       "proxy/proxy_resolver_mac.cc",
462       "proxy/proxy_server_mac.cc",
463     ]
464     set_sources_assignment_filter(sources_assignment_filter)
466     sources -= [ "disk_cache/blockfile/file_posix.cc" ]
467     libs = [
468       "CFNetwork.framework",
469       "MobileCoreServices.framework",
470       "Security.framework",
471       "SystemConfiguration.framework",
472       "resolv",
473     ]
474   }
476   if (is_ios || is_mac) {
477     sources += gypi_values.net_base_mac_ios_sources
478   }
480   if (is_android) {
481     # Add some Linux sources that were excluded by the filter, but which
482     # are needed.
483     set_sources_assignment_filter([])
484     sources += [
485       "base/address_tracker_linux.cc",
486       "base/address_tracker_linux.h",
487       "base/network_interfaces_linux.cc",
488       "base/network_interfaces_linux.h",
489       "base/platform_mime_util_linux.cc",
490     ]
491     set_sources_assignment_filter(sources_assignment_filter)
492     deps += [ ":net_jni_headers" ]
493   }
495   if (use_icu_alternatives_on_android) {
496     sources += [
497       "base/net_string_util_icu_alternatives_android.cc",
498       "base/net_string_util_icu_alternatives_android.h",
499     ]
500   } else {
501     deps += [
502       "//base:i18n",
503       "//third_party/icu",
504     ]
505     sources += [
506       "base/filename_util_icu.cc",
507       "base/net_string_util_icu.cc",
508       "base/net_util_icu.cc",
509     ]
510   }
513 grit("net_resources") {
514   source = "base/net_resources.grd"
515   use_qualified_include = true
516   outputs = [
517     "grit/net_resources.h",
518     "net_resources.pak",
519     "net_resources.rc",
520   ]
523 proto_library("net_quic_proto") {
524   visibility = [ "//net" ]  # Part of the net component.
526   sources = [
527     "quic/proto/cached_network_parameters.proto",
528     "quic/proto/source_address_token.proto",
529   ]
530   cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
531   cc_include = "net/base/net_export.h"
533   defines = [ "NET_IMPLEMENTATION" ]
535   extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
538 static_library("extras") {
539   sources = gypi_values.net_extras_sources
540   configs += [ "//build/config/compiler:wexit_time_destructors" ]
541   deps = [
542     ":net",
543     "//base",
544     "//sql:sql",
545   ]
548 static_library("http_server") {
549   sources = [
550     "server/http_connection.cc",
551     "server/http_connection.h",
552     "server/http_server.cc",
553     "server/http_server.h",
554     "server/http_server_request_info.cc",
555     "server/http_server_request_info.h",
556     "server/http_server_response_info.cc",
557     "server/http_server_response_info.h",
558     "server/web_socket.cc",
559     "server/web_socket.h",
560     "server/web_socket_encoder.cc",
561     "server/web_socket_encoder.h",
562   ]
563   configs += [
564     "//build/config/compiler:no_size_t_to_int_warning",
565     "//build/config/compiler:wexit_time_destructors",
566   ]
567   deps = [
568     ":net",
569     "//base",
570   ]
573 executable("dump_cache") {
574   testonly = true
575   sources = [
576     "tools/dump_cache/cache_dumper.cc",
577     "tools/dump_cache/cache_dumper.h",
578     "tools/dump_cache/dump_cache.cc",
579     "tools/dump_cache/dump_files.cc",
580     "tools/dump_cache/dump_files.h",
581     "tools/dump_cache/simple_cache_dumper.cc",
582     "tools/dump_cache/simple_cache_dumper.h",
583     "tools/dump_cache/url_to_filename_encoder.cc",
584     "tools/dump_cache/url_to_filename_encoder.h",
585     "tools/dump_cache/url_utilities.cc",
586     "tools/dump_cache/url_utilities.h",
587   ]
589   # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
590   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
592   deps = [
593     "//base",
594     ":net",
595     ":test_support",
596   ]
599 source_set("test_support") {
600   testonly = true
601   sources = [
602     "base/load_timing_info_test_util.cc",
603     "base/load_timing_info_test_util.h",
604     "base/mock_file_stream.cc",
605     "base/mock_file_stream.h",
606     "base/test_completion_callback.cc",
607     "base/test_completion_callback.h",
608     "base/test_data_directory.cc",
609     "base/test_data_directory.h",
610     "cert/mock_cert_verifier.cc",
611     "cert/mock_cert_verifier.h",
612     "cookies/cookie_monster_store_test.cc",
613     "cookies/cookie_monster_store_test.h",
614     "cookies/cookie_store_test_callbacks.cc",
615     "cookies/cookie_store_test_callbacks.h",
616     "cookies/cookie_store_test_helpers.cc",
617     "cookies/cookie_store_test_helpers.h",
618     "disk_cache/disk_cache_test_base.cc",
619     "disk_cache/disk_cache_test_base.h",
620     "disk_cache/disk_cache_test_util.cc",
621     "disk_cache/disk_cache_test_util.h",
622     "dns/dns_test_util.cc",
623     "dns/dns_test_util.h",
624     "dns/mock_host_resolver.cc",
625     "dns/mock_host_resolver.h",
626     "dns/mock_mdns_socket_factory.cc",
627     "dns/mock_mdns_socket_factory.h",
628     "http/http_transaction_test_util.cc",
629     "http/http_transaction_test_util.h",
630     "log/test_net_log.cc",
631     "log/test_net_log.h",
632     "log/test_net_log_entry.cc",
633     "log/test_net_log_entry.h",
634     "log/test_net_log_util.cc",
635     "log/test_net_log_util.h",
636     "proxy/mock_proxy_resolver.cc",
637     "proxy/mock_proxy_resolver.h",
638     "proxy/mock_proxy_script_fetcher.cc",
639     "proxy/mock_proxy_script_fetcher.h",
640     "proxy/proxy_config_service_common_unittest.cc",
641     "proxy/proxy_config_service_common_unittest.h",
642     "socket/socket_test_util.cc",
643     "socket/socket_test_util.h",
644     "test/cert_test_util.cc",
645     "test/cert_test_util.h",
646     "test/cert_test_util_nss.cc",
647     "test/channel_id_test_util.cc",
648     "test/channel_id_test_util.h",
649     "test/ct_test_util.cc",
650     "test/ct_test_util.h",
651     "test/embedded_test_server/embedded_test_server.cc",
652     "test/embedded_test_server/embedded_test_server.h",
653     "test/embedded_test_server/http_connection.cc",
654     "test/embedded_test_server/http_connection.h",
655     "test/embedded_test_server/http_request.cc",
656     "test/embedded_test_server/http_request.h",
657     "test/embedded_test_server/http_response.cc",
658     "test/embedded_test_server/http_response.h",
659     "test/embedded_test_server/stream_listen_socket.cc",
660     "test/embedded_test_server/stream_listen_socket.h",
661     "test/embedded_test_server/tcp_listen_socket.cc",
662     "test/embedded_test_server/tcp_listen_socket.h",
663     "test/event_waiter.h",
664     "test/net_test_suite.cc",
665     "test/net_test_suite.h",
666     "test/python_utils.cc",
667     "test/python_utils.h",
668     "test/spawned_test_server/base_test_server.cc",
669     "test/spawned_test_server/base_test_server.h",
670     "test/spawned_test_server/local_test_server.cc",
671     "test/spawned_test_server/local_test_server.h",
672     "test/spawned_test_server/local_test_server_posix.cc",
673     "test/spawned_test_server/local_test_server_win.cc",
674     "test/spawned_test_server/remote_test_server.cc",
675     "test/spawned_test_server/remote_test_server.h",
676     "test/spawned_test_server/spawned_test_server.h",
677     "test/spawned_test_server/spawner_communicator.cc",
678     "test/spawned_test_server/spawner_communicator.h",
679     "test/url_request/url_request_failed_job.cc",
680     "test/url_request/url_request_failed_job.h",
681     "test/url_request/url_request_mock_data_job.cc",
682     "test/url_request/url_request_mock_data_job.h",
683     "test/url_request/url_request_slow_download_job.cc",
684     "test/url_request/url_request_slow_download_job.h",
685     "url_request/test_url_fetcher_factory.cc",
686     "url_request/test_url_fetcher_factory.h",
687     "url_request/url_request_test_util.cc",
688     "url_request/url_request_test_util.h",
689   ]
691   # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
692   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
694   public_deps = [
695     "//base",
696     "//base/test:test_support",
697     "//crypto",
698     "//net",
699     "//net/tools/tld_cleanup",
700     "//testing/gmock",
701     "//testing/gtest",
702     "//url",
703   ]
705   if (!is_ios) {
706     public_deps += [ "//third_party/protobuf:py_proto" ]
707   }
709   if (use_nss_certs || is_ios) {
710     public_deps += [ "//crypto:platform" ]
711   }
713   if (!is_android) {
714     sources -= [
715       "test/spawned_test_server/remote_test_server.cc",
716       "test/spawned_test_server/remote_test_server.h",
717       "test/spawned_test_server/spawner_communicator.cc",
718       "test/spawned_test_server/spawner_communicator.h",
719     ]
720   }
722   if (use_v8_in_net) {
723     public_deps += [ ":net_with_v8" ]
724   }
726   if (!enable_mdns) {
727     sources -= [
728       "dns/mock_mdns_socket_factory.cc",
729       "dns/mock_mdns_socket_factory.h",
730     ]
731   }
733   if (!use_nss_certs) {
734     sources -= [ "test/cert_test_util_nss.cc" ]
735   }
737   if (!disable_file_support) {
738     sources += [
739       "test/url_request/url_request_mock_http_job.cc",
740       "test/url_request/url_request_mock_http_job.h",
741       "url_request/test_url_request_interceptor.cc",
742       "url_request/test_url_request_interceptor.h",
743     ]
744   }
747 source_set("balsa") {
748   sources = [
749     "tools/balsa/balsa_enums.h",
750     "tools/balsa/balsa_frame.cc",
751     "tools/balsa/balsa_frame.h",
752     "tools/balsa/balsa_headers.cc",
753     "tools/balsa/balsa_headers.h",
754     "tools/balsa/balsa_headers_token_utils.cc",
755     "tools/balsa/balsa_headers_token_utils.h",
756     "tools/balsa/balsa_visitor_interface.h",
757     "tools/balsa/http_message_constants.cc",
758     "tools/balsa/http_message_constants.h",
759     "tools/balsa/noop_balsa_visitor.h",
760     "tools/balsa/simple_buffer.cc",
761     "tools/balsa/simple_buffer.h",
762     "tools/balsa/split.cc",
763     "tools/balsa/split.h",
764     "tools/balsa/string_piece_utils.h",
765     "tools/quic/spdy_balsa_utils.cc",
766     "tools/quic/spdy_balsa_utils.h",
767   ]
768   deps = [
769     ":net",
770     "//base",
771     "//url",
772   ]
775 if (use_v8_in_net) {
776   component("net_with_v8") {
777     sources = [
778       "proxy/proxy_resolver_v8.cc",
779       "proxy/proxy_resolver_v8.h",
780       "proxy/proxy_resolver_v8_tracing.cc",
781       "proxy/proxy_resolver_v8_tracing.h",
782       "proxy/proxy_resolver_v8_tracing_wrapper.cc",
783       "proxy/proxy_resolver_v8_tracing_wrapper.h",
784       "proxy/proxy_service_v8.cc",
785       "proxy/proxy_service_v8.h",
786     ]
788     defines = [ "NET_IMPLEMENTATION" ]
789     configs += [
790       "//build/config/compiler:no_size_t_to_int_warning",
791       "//build/config/compiler:wexit_time_destructors",
792     ]
794     public_deps = [
795       ":net",
796     ]
797     deps = [
798       "//base",
799       "//gin",
800       "//url",
801       "//v8",
802     ]
803   }
806 if (use_v8_in_net && !is_android) {
807   source_set("net_browser_services") {
808     sources = [
809       "dns/mojo_host_resolver_impl.cc",
810       "dns/mojo_host_resolver_impl.h",
811       "proxy/in_process_mojo_proxy_resolver_factory.cc",
812       "proxy/in_process_mojo_proxy_resolver_factory.h",
813       "proxy/mojo_proxy_resolver_factory.h",
814       "proxy/proxy_resolver_factory_mojo.cc",
815       "proxy/proxy_resolver_factory_mojo.h",
816       "proxy/proxy_service_mojo.cc",
817       "proxy/proxy_service_mojo.h",
818     ]
820     public_deps = [
821       ":mojo_type_converters",
822       ":net",
823       "//base",
824       "//mojo/common",
825       "//net/interfaces",
826       "//third_party/mojo/src/mojo/public/cpp/bindings",
828       # NOTE(amistry): As long as we support in-process Mojo v8 PAC, we need
829       # this dependency since in_process_mojo_proxy_resolver_factory creates
830       # the utility process side Mojo services in the browser process.
831       # Ultimately, this will go away when we only support out-of-process.
832       ":net_utility_services",
833     ]
834   }
836   source_set("mojo_type_converters") {
837     sources = [
838       "dns/mojo_host_type_converters.cc",
839       "dns/mojo_host_type_converters.h",
840       "proxy/mojo_proxy_type_converters.cc",
841       "proxy/mojo_proxy_type_converters.h",
842     ]
844     public_deps = [
845       ":net",
846       "//net/interfaces",
847       "//third_party/mojo/src/mojo/public/cpp/bindings",
848     ]
849   }
851   source_set("net_utility_services") {
852     sources = [
853       "dns/host_resolver_mojo.cc",
854       "dns/host_resolver_mojo.h",
855       "proxy/mojo_proxy_resolver_factory_impl.cc",
856       "proxy/mojo_proxy_resolver_factory_impl.h",
857       "proxy/mojo_proxy_resolver_impl.cc",
858       "proxy/mojo_proxy_resolver_impl.h",
859       "proxy/proxy_resolver_error_observer_mojo.cc",
860       "proxy/proxy_resolver_error_observer_mojo.h",
861     ]
863     deps = [
864       ":net_with_v8",
865     ]
867     public_deps = [
868       ":mojo_type_converters",
869       ":net",
870       "//mojo/common",
871       "//net/interfaces",
872       "//third_party/mojo/src/mojo/public/cpp/bindings",
873     ]
874   }
877 if (!is_ios && !is_android) {
878   executable("crash_cache") {
879     testonly = true
880     sources = [
881       "tools/crash_cache/crash_cache.cc",
882     ]
884     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
885     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
886     deps = [
887       ":net",
888       ":test_support",
889       "//base",
890     ]
891   }
893   executable("crl_set_dump") {
894     testonly = true
895     sources = [
896       "tools/crl_set_dump/crl_set_dump.cc",
897     ]
899     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
900     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
901     deps = [
902       ":net",
903       "//base",
904     ]
905   }
907   executable("dns_fuzz_stub") {
908     testonly = true
909     sources = [
910       "tools/dns_fuzz_stub/dns_fuzz_stub.cc",
911     ]
913     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
914     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
915     deps = [
916       ":net",
917       "//base",
918     ]
919   }
921   executable("gdig") {
922     testonly = true
923     sources = [
924       "tools/gdig/file_net_log.cc",
925       "tools/gdig/gdig.cc",
926     ]
927     deps = [
928       ":net",
929       "//base",
930     ]
931   }
933   executable("get_server_time") {
934     testonly = true
935     sources = [
936       "tools/get_server_time/get_server_time.cc",
937     ]
939     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
940     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
941     deps = [
942       ":net",
943       "//base",
944       "//base:i18n",
945       "//url",
946     ]
947   }
949   executable("hpack_example_generator") {
950     testonly = true
951     sources = [
952       "spdy/fuzzing/hpack_example_generator.cc",
953     ]
955     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
956     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
957     deps = [
958       "//base",
959       ":net",
960     ]
961   }
963   executable("hpack_fuzz_mutator") {
964     testonly = true
965     sources = [
966       "spdy/fuzzing/hpack_fuzz_mutator.cc",
967     ]
969     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
970     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
971     deps = [
972       "//base",
973       ":net",
974     ]
975   }
977   executable("hpack_fuzz_wrapper") {
978     testonly = true
979     sources = [
980       "spdy/fuzzing/hpack_fuzz_wrapper.cc",
981     ]
983     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
984     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
985     deps = [
986       "//base",
987       ":net",
988     ]
989   }
991   if (use_v8_in_net) {
992     executable("net_watcher") {
993       testonly = true
994       sources = [
995         "tools/net_watcher/net_watcher.cc",
996       ]
997       deps = [
998         ":net",
999         ":net_with_v8",
1000         "//base",
1001       ]
1003       if (is_desktop_linux) {
1004         configs += [
1005           "//build/config/linux:gconf",
1006           "//build/config/linux:glib",
1007         ]
1008         deps += [ "//build/config/linux:gio" ]
1009       }
1010     }
1011   }
1013   executable("run_testserver") {
1014     testonly = true
1015     sources = [
1016       "tools/testserver/run_testserver.cc",
1017     ]
1018     deps = [
1019       ":net",  # TODO(brettw) bug 363749: this shouldn't be necessary. It's not
1020                # in the GYP build, and can be removed when the bug is fixed.
1022       ":test_support",
1023       "//base",
1024       "//base/test:test_support",
1025       "//testing/gtest",
1026     ]
1027   }
1029   executable("stress_cache") {
1030     testonly = true
1031     sources = [
1032       "tools/stress_cache/stress_cache.cc",
1033     ]
1035     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1036     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1037     deps = [
1038       ":net",
1039       ":test_support",
1040       "//base",
1041     ]
1042   }
1044   executable("tld_cleanup") {
1045     sources = [
1046       "tools/tld_cleanup/tld_cleanup.cc",
1047     ]
1049     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1050     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1051     deps = [
1052       "//base",
1053       "//base:i18n",
1054       "//net/tools/tld_cleanup",
1055     ]
1056   }
1059 if (is_linux) {
1060   static_library("epoll_server") {
1061     sources = [
1062       "tools/epoll_server/epoll_server.cc",
1063       "tools/epoll_server/epoll_server.h",
1064     ]
1065     deps = [
1066       ":net",
1067       "//base",
1068     ]
1069   }
1071   static_library("flip_in_mem_edsm_server_base") {
1072     testonly = true
1073     sources = [
1074       "tools/dump_cache/url_to_filename_encoder.cc",
1075       "tools/dump_cache/url_to_filename_encoder.h",
1076       "tools/dump_cache/url_utilities.cc",
1077       "tools/dump_cache/url_utilities.h",
1078       "tools/flip_server/acceptor_thread.cc",
1079       "tools/flip_server/acceptor_thread.h",
1080       "tools/flip_server/constants.h",
1081       "tools/flip_server/create_listener.cc",
1082       "tools/flip_server/create_listener.h",
1083       "tools/flip_server/flip_config.cc",
1084       "tools/flip_server/flip_config.h",
1085       "tools/flip_server/http_interface.cc",
1086       "tools/flip_server/http_interface.h",
1087       "tools/flip_server/loadtime_measurement.h",
1088       "tools/flip_server/mem_cache.cc",
1089       "tools/flip_server/mem_cache.h",
1090       "tools/flip_server/output_ordering.cc",
1091       "tools/flip_server/output_ordering.h",
1092       "tools/flip_server/ring_buffer.cc",
1093       "tools/flip_server/ring_buffer.h",
1094       "tools/flip_server/sm_connection.cc",
1095       "tools/flip_server/sm_connection.h",
1096       "tools/flip_server/sm_interface.h",
1097       "tools/flip_server/spdy_interface.cc",
1098       "tools/flip_server/spdy_interface.h",
1099       "tools/flip_server/spdy_ssl.cc",
1100       "tools/flip_server/spdy_ssl.h",
1101       "tools/flip_server/spdy_util.cc",
1102       "tools/flip_server/spdy_util.h",
1103       "tools/flip_server/streamer_interface.cc",
1104       "tools/flip_server/streamer_interface.h",
1105     ]
1106     deps = [
1107       ":balsa",
1108       ":epoll_server",
1109       ":net",
1110       "//base",
1111       "//third_party/boringssl",
1112     ]
1113   }
1115   executable("flip_in_mem_edsm_server_unittests") {
1116     testonly = true
1117     sources = [
1118       "tools/flip_server/flip_test_utils.cc",
1119       "tools/flip_server/flip_test_utils.h",
1120       "tools/flip_server/http_interface_test.cc",
1121       "tools/flip_server/mem_cache_test.cc",
1122       "tools/flip_server/run_all_tests.cc",
1123       "tools/flip_server/spdy_interface_test.cc",
1124     ]
1125     deps = [
1126       ":balsa",
1127       ":flip_in_mem_edsm_server_base",
1128       ":net",
1129       ":test_support",
1130       "//testing/gtest",
1131       "//testing/gmock",
1132       "//third_party/boringssl",
1133     ]
1134   }
1136   executable("flip_in_mem_edsm_server") {
1137     testonly = true
1138     sources = [
1139       "tools/flip_server/flip_in_mem_edsm_server.cc",
1140     ]
1141     deps = [
1142       ":balsa",
1143       ":flip_in_mem_edsm_server_base",
1144       ":net",
1145       "//base",
1146     ]
1147   }
1149   source_set("epoll_quic_tools") {
1150     sources = [
1151       "tools/quic/quic_client.cc",
1152       "tools/quic/quic_client.h",
1153       "tools/quic/quic_default_packet_writer.cc",
1154       "tools/quic/quic_default_packet_writer.h",
1155       "tools/quic/quic_epoll_clock.cc",
1156       "tools/quic/quic_epoll_clock.h",
1157       "tools/quic/quic_epoll_connection_helper.cc",
1158       "tools/quic/quic_epoll_connection_helper.h",
1159       "tools/quic/quic_packet_reader.cc",
1160       "tools/quic/quic_packet_reader.h",
1161       "tools/quic/quic_packet_writer_wrapper.cc",
1162       "tools/quic/quic_packet_writer_wrapper.h",
1163       "tools/quic/quic_server.cc",
1164       "tools/quic/quic_server.h",
1165       "tools/quic/quic_socket_utils.cc",
1166       "tools/quic/quic_socket_utils.h",
1167     ]
1168     deps = [
1169       ":balsa",
1170       ":epoll_server",
1171       ":net",
1172       "//base",
1173       "//base/third_party/dynamic_annotations",
1174       "//crypto",
1175       "//third_party/boringssl",
1176       "//url",
1177     ]
1178   }
1180   executable("epoll_quic_client") {
1181     sources = [
1182       "tools/quic/quic_client_bin.cc",
1183     ]
1184     deps = [
1185       ":balsa",
1186       ":epoll_server",
1187       ":epoll_quic_tools",
1188       ":net",
1189       ":simple_quic_tools",
1190       "//base",
1191       "//third_party/boringssl",
1192     ]
1193   }
1195   executable("epoll_quic_server") {
1196     sources = [
1197       "tools/quic/quic_server_bin.cc",
1198     ]
1199     deps = [
1200       ":balsa",
1201       ":epoll_server",
1202       ":epoll_quic_tools",
1203       ":net",
1204       ":simple_quic_tools",
1205       "//base",
1206       "//third_party/boringssl",
1207     ]
1208   }
1211 if (is_android) {
1212   generate_jni("net_jni_headers") {
1213     sources = [
1214       "android/java/src/org/chromium/net/AndroidCertVerifyResult.java",
1215       "android/java/src/org/chromium/net/AndroidKeyStore.java",
1216       "android/java/src/org/chromium/net/AndroidNetworkLibrary.java",
1217       "android/java/src/org/chromium/net/AndroidPrivateKey.java",
1218       "android/java/src/org/chromium/net/GURLUtils.java",
1219       "android/java/src/org/chromium/net/NetworkChangeNotifier.java",
1220       "android/java/src/org/chromium/net/ProxyChangeListener.java",
1221       "android/java/src/org/chromium/net/X509Util.java",
1222     ]
1223     jni_package = "net"
1224   }
1225   generate_jni("net_test_jni_headers") {
1226     sources = [
1227       "android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java",
1228     ]
1229     jni_package = "net"
1230   }
1233 if (is_android || is_linux) {
1234   executable("disk_cache_memory_test") {
1235     testonly = true
1236     sources = [
1237       "tools/disk_cache_memory_test/disk_cache_memory_test.cc",
1238     ]
1239     deps = [
1240       ":net",
1241       "//base",
1242     ]
1243   }
1246 source_set("simple_quic_tools") {
1247   sources = [
1248     "tools/quic/quic_client_session.cc",
1249     "tools/quic/quic_client_session.h",
1250     "tools/quic/quic_dispatcher.cc",
1251     "tools/quic/quic_dispatcher.h",
1252     "tools/quic/quic_in_memory_cache.cc",
1253     "tools/quic/quic_in_memory_cache.h",
1254     "tools/quic/quic_per_connection_packet_writer.cc",
1255     "tools/quic/quic_per_connection_packet_writer.h",
1256     "tools/quic/quic_server_session.cc",
1257     "tools/quic/quic_server_session.h",
1258     "tools/quic/quic_simple_client.cc",
1259     "tools/quic/quic_simple_client.h",
1260     "tools/quic/quic_simple_per_connection_packet_writer.cc",
1261     "tools/quic/quic_simple_per_connection_packet_writer.h",
1262     "tools/quic/quic_simple_server.cc",
1263     "tools/quic/quic_simple_server.h",
1264     "tools/quic/quic_simple_server_packet_writer.cc",
1265     "tools/quic/quic_simple_server_packet_writer.h",
1266     "tools/quic/quic_spdy_client_stream.cc",
1267     "tools/quic/quic_spdy_client_stream.h",
1268     "tools/quic/quic_spdy_server_stream.cc",
1269     "tools/quic/quic_spdy_server_stream.h",
1270     "tools/quic/quic_time_wait_list_manager.cc",
1271     "tools/quic/quic_time_wait_list_manager.h",
1272     "tools/quic/synchronous_host_resolver.cc",
1273     "tools/quic/synchronous_host_resolver.h",
1274   ]
1275   deps = [
1276     ":net",
1277     "//base",
1278     "//base/third_party/dynamic_annotations",
1279     "//url",
1280   ]
1283 executable("quic_client") {
1284   sources = [
1285     "tools/quic/quic_simple_client_bin.cc",
1286   ]
1287   deps = [
1288     ":net",
1289     ":simple_quic_tools",
1290     "//base",
1291     "//url",
1292   ]
1295 executable("quic_server") {
1296   sources = [
1297     "tools/quic/quic_simple_server_bin.cc",
1298   ]
1299   deps = [
1300     ":net",
1301     ":simple_quic_tools",
1302     "//base",
1303     "//third_party/boringssl",
1304     "//third_party/protobuf:protobuf_lite",
1305   ]
1308 # TODO(GYP) make this compile on Android, we need some native test deps done.
1309 # TODO(GYP) Also doesn't work on Mac, need to figure out why not.
1310 if (!is_android && !is_mac) {
1311   test("net_unittests") {
1312     sources = gypi_values.net_test_sources
1314     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1315     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1316     defines = []
1318     deps = [
1319       ":balsa",
1320       ":extras",
1321       ":http_server",
1322       ":net",
1323       ":simple_quic_tools",
1324       ":test_support",
1325       "//base",
1326       "//base:i18n",
1327       "//base:prefs_test_support",
1328       "//base/allocator",
1329       "//base/third_party/dynamic_annotations",
1330       "//crypto",
1331       "//crypto:platform",
1332       "//crypto:test_support",
1333       "//gin",
1334       "//net/base/registry_controlled_domains",
1335       "//sql",
1336       "//testing/gmock",
1337       "//testing/gtest",
1338       "//third_party/zlib",
1339       "//url",
1340     ]
1342     if (is_desktop_linux) {
1343       deps += [ ":epoll_quic_tools" ]
1344     }
1345     if (is_linux) {
1346       sources += gypi_values.net_linux_test_sources
1347       deps += [
1348         ":balsa",
1349         ":epoll_server",
1350         ":flip_in_mem_edsm_server_base",
1351         ":epoll_quic_tools",
1352       ]
1353     }
1355     if (is_mac || is_ios) {
1356       sources += gypi_values.net_base_test_mac_ios_sources
1357     }
1359     if (is_chromeos) {
1360       sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ]
1361     }
1363     if (is_android) {
1364       sources -= [
1365         # See bug http://crbug.com/344533.
1366         "disk_cache/blockfile/index_table_v3_unittest.cc",
1368         # No res_ninit() et al on Android, so this doesn't make a lot of
1369         # sense.
1370         "dns/dns_config_service_posix_unittest.cc",
1371       ]
1372       deps += [ ":net_test_jni_headers" ]
1373       isolate_file = "net_unittests.isolate"
1374     }
1376     if (v8_use_external_startup_data) {
1377       deps += [ "//gin" ]
1378     }
1380     if (!use_nss_certs) {
1381       sources -= [
1382         "cert/nss_cert_database_unittest.cc",
1383         "ssl/client_cert_store_nss_unittest.cc",
1384       ]
1385       if (is_chromeos) {  # Already removed for all non-ChromeOS builds.
1386         sources -= [
1387           "cert/nss_cert_database_chromeos_unittest.cc",
1388           "cert/nss_profile_filter_chromeos_unittest.cc",
1389           "ssl/client_cert_store_chromeos_unittest.cc",
1390         ]
1391       }
1392     }
1394     if (use_openssl) {
1395       # When building for OpenSSL, we need to exclude NSS specific tests
1396       # or functionality not supported by OpenSSL yet.
1397       # TODO(bulach): Add equivalent tests when the underlying
1398       #               functionality is ported to OpenSSL.
1399       sources -= [ "quic/test_tools/crypto_test_utils_nss.cc" ]
1400     } else {
1401       sources -= [
1402         "cert/x509_util_openssl_unittest.cc",
1403         "quic/test_tools/crypto_test_utils_openssl.cc",
1404         "socket/ssl_client_socket_openssl_unittest.cc",
1405         "ssl/ssl_client_session_cache_openssl_unittest.cc",
1406       ]
1407     }
1409     if (use_kerberos) {
1410       defines += [ "USE_KERBEROS" ]
1411     } else {
1412       sources -= [
1413         "http/http_auth_gssapi_posix_unittest.cc",
1414         "http/http_auth_handler_negotiate_unittest.cc",
1415         "http/mock_gssapi_library_posix.cc",
1416         "http/mock_gssapi_library_posix.h",
1417       ]
1418     }
1420     if (use_openssl || (!is_desktop_linux && !is_chromeos && !is_ios)) {
1421       # Only include this test when on Posix and using NSS for
1422       # cert verification or on iOS (which also uses NSS for certs).
1423       sources -= [ "cert_net/nss_ocsp_unittest.cc" ]
1424     }
1426     if (!use_openssl_certs) {
1427       sources -= [ "ssl/openssl_client_key_store_unittest.cc" ]
1428     }
1430     if (!enable_websockets) {
1431       sources -= [
1432         "server/http_connection_unittest.cc",
1433         "server/http_server_response_info_unittest.cc",
1434         "server/http_server_unittest.cc",
1435         "server/web_socket_encoder_unittest.cc",
1436         "websockets/websocket_basic_stream_test.cc",
1437         "websockets/websocket_channel_test.cc",
1438         "websockets/websocket_deflate_predictor_impl_test.cc",
1439         "websockets/websocket_deflate_stream_test.cc",
1440         "websockets/websocket_deflater_test.cc",
1441         "websockets/websocket_end_to_end_test.cc",
1442         "websockets/websocket_errors_test.cc",
1443         "websockets/websocket_extension_parser_test.cc",
1444         "websockets/websocket_frame_parser_test.cc",
1445         "websockets/websocket_frame_test.cc",
1446         "websockets/websocket_handshake_challenge_test.cc",
1447         "websockets/websocket_handshake_stream_create_helper_test.cc",
1448         "websockets/websocket_inflater_test.cc",
1449         "websockets/websocket_stream_test.cc",
1450         "websockets/websocket_test_util.cc",
1451         "websockets/websocket_test_util.h",
1452       ]
1453       deps -= [ ":http_server" ]
1454     }
1456     if (disable_file_support) {
1457       sources -= [
1458         "base/directory_lister_unittest.cc",
1459         "url_request/url_request_file_job_unittest.cc",
1460       ]
1461     }
1463     if (disable_ftp_support) {
1464       sources -= [
1465         "ftp/ftp_auth_cache_unittest.cc",
1466         "ftp/ftp_ctrl_response_buffer_unittest.cc",
1467         "ftp/ftp_directory_listing_parser_ls_unittest.cc",
1468         "ftp/ftp_directory_listing_parser_netware_unittest.cc",
1469         "ftp/ftp_directory_listing_parser_os2_unittest.cc",
1470         "ftp/ftp_directory_listing_parser_unittest.cc",
1471         "ftp/ftp_directory_listing_parser_unittest.h",
1472         "ftp/ftp_directory_listing_parser_vms_unittest.cc",
1473         "ftp/ftp_directory_listing_parser_windows_unittest.cc",
1474         "ftp/ftp_network_transaction_unittest.cc",
1475         "ftp/ftp_util_unittest.cc",
1476         "url_request/url_request_ftp_job_unittest.cc",
1477       ]
1478     }
1480     if (!enable_built_in_dns) {
1481       sources -= [
1482         "dns/address_sorter_posix_unittest.cc",
1483         "dns/address_sorter_unittest.cc",
1484       ]
1485     }
1487     # Always need use_v8_in_net to be 1 to run on Android, so just remove
1488     # net_unittest's dependency on v8 when using icu alternatives instead of
1489     # setting use_v8_in_net to 0.
1490     if (use_v8_in_net && !use_icu_alternatives_on_android) {
1491       deps += [ ":net_with_v8" ]
1492     } else {
1493       sources -= [
1494         "proxy/proxy_resolver_v8_tracing_unittest.cc",
1495         "proxy/proxy_resolver_v8_tracing_wrapper_unittest.cc",
1496         "proxy/proxy_resolver_v8_unittest.cc",
1497       ]
1498     }
1500     if (use_v8_in_net && !is_android) {
1501       deps += [
1502         ":net_browser_services",
1503         ":net_utility_services",
1504         "//mojo/environment:chromium",
1505         "//third_party/mojo/src/mojo/edk/system",
1506       ]
1507     } else {
1508       sources -= [
1509         "dns/host_resolver_mojo_unittest.cc",
1510         "dns/mojo_host_resolver_impl_unittest.cc",
1511         "proxy/mojo_proxy_resolver_factory_impl_unittest.cc",
1512         "proxy/mojo_proxy_resolver_impl_unittest.cc",
1513         "proxy/proxy_resolver_error_observer_mojo_unittest.cc",
1514         "proxy/proxy_resolver_factory_mojo_unittest.cc",
1515         "proxy/proxy_service_mojo_unittest.cc",
1516       ]
1517     }
1519     if (!enable_mdns) {
1520       sources -= [
1521         "dns/mdns_cache_unittest.cc",
1522         "dns/mdns_client_unittest.cc",
1523         "dns/record_parsed_unittest.cc",
1524         "dns/record_rdata_unittest.cc",
1525       ]
1526     }
1528     if (is_ios) {
1529       # TODO(GYP)
1530       #  'actions': [
1531       #    {
1532       #      'action_name': 'copy_test_data',
1533       #      'variables': {
1534       #        'test_data_files': [
1535       #          'data/ssl/certificates/',
1536       #          'data/test.html',
1537       #          'data/url_request_unittest/',
1538       #        ],
1539       #        'test_data_prefix': 'net',
1540       #      },
1541       #      'includes': [ '../build/copy_test_data_ios.gypi' ],
1542       #    },
1543       #  ],
1544       sources -= [
1545         # TODO(droger): The following tests are disabled because the
1546         # implementation is missing or incomplete.
1547         # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS.
1548         "base/keygen_handler_unittest.cc",
1549         "disk_cache/backend_unittest.cc",
1550         "disk_cache/blockfile/block_files_unittest.cc",
1552         # Need to read input data files.
1553         "filter/gzip_filter_unittest.cc",
1554         "socket/ssl_server_socket_unittest.cc",
1555         "spdy/fuzzing/hpack_fuzz_util_test.cc",
1557         # Need TestServer.
1558         "cert_net/cert_net_fetcher_impl_unittest.cc",
1559         "proxy/proxy_script_fetcher_impl_unittest.cc",
1560         "socket/ssl_client_socket_unittest.cc",
1561         "url_request/url_fetcher_impl_unittest.cc",
1562         "url_request/url_request_context_builder_unittest.cc",
1564         # Needs GetAppOutput().
1565         "test/python_utils_unittest.cc",
1567         # The following tests are disabled because they don't apply to
1568         # iOS.
1569         # OS is not "linux" or "freebsd" or "openbsd".
1570         "socket/unix_domain_client_socket_posix_unittest.cc",
1571         "socket/unix_domain_listen_socket_posix_unittest.cc",
1572         "socket/unix_domain_server_socket_posix_unittest.cc",
1574         # See bug http://crbug.com/344533.
1575         "disk_cache/blockfile/index_table_v3_unittest.cc",
1576       ]
1577     }
1579     if (is_android) {
1580       sources -= [ "dns/dns_config_service_posix_unittest.cc" ]
1582       # TODO(GYP)
1583       # # TODO(mmenke):  This depends on test_support_base, which depends on
1584       # #                icu.  Figure out a way to remove that dependency.
1585       # 'dependencies': [
1586       #   '../testing/android/native_test.gyp:native_test_native_code',
1587       # ]
1589       set_sources_assignment_filter([])
1590       sources += [ "base/address_tracker_linux_unittest.cc" ]
1591       set_sources_assignment_filter(sources_assignment_filter)
1592     }
1594     if (use_icu_alternatives_on_android) {
1595       sources -= [
1596         "base/filename_util_unittest.cc",
1597         "base/net_util_icu_unittest.cc",
1598       ]
1599       deps -= [ "//base:i18n" ]
1600     }
1601   }
1602 }  # !is_android && !is_win && !is_mac
1604 executable("net_perftests") {
1605   testonly = true
1606   sources = [
1607     "base/mime_sniffer_perftest.cc",
1608     "cookies/cookie_monster_perftest.cc",
1609     "disk_cache/blockfile/disk_cache_perftest.cc",
1610     "extras/sqlite/sqlite_persistent_cookie_store_perftest.cc",
1611     "proxy/proxy_resolver_perftest.cc",
1612     "udp/udp_socket_perftest.cc",
1613   ]
1615   # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1616   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1617   deps = [
1618     "//base",
1619     "//base:i18n",
1620     "//base/test:test_support_perf",
1621     "//testing/gtest",
1622     "//url",
1623     ":extras",
1624     ":net",
1625     ":test_support",
1626   ]
1628   if (enable_websockets) {
1629     sources += [ "websockets/websocket_frame_perftest.cc" ]
1630   }
1632   if (use_v8_in_net) {
1633     deps += [ ":net_with_v8" ]
1634   } else {
1635     sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1636   }
1638   if (is_win && icu_use_data_file) {
1639     # This is needed to trigger the dll copy step on windows.
1640     # TODO(mark): Specifying this here shouldn't be necessary.
1641     deps += [ "//third_party/icu:icudata" ]
1642   }