Compute can_use_lcd_text using property trees.
[chromium-blink-merge.git] / net / BUILD.gn
blob8edf028427a2ec2ae52beaf4ef1d576591d3b966
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_platform_key.h",
248       "ssl/openssl_platform_key_nss.cc",
249       "ssl/openssl_ssl_util.cc",
250       "ssl/openssl_ssl_util.h",
251       "ssl/ssl_client_session_cache_openssl.cc",
252       "ssl/ssl_client_session_cache_openssl.h",
253     ]
254     if (is_mac) {
255       sources -= [ "ssl/openssl_platform_key_mac.cc" ]
256     }
257     if (is_win) {
258       sources -= [
259         "cert/sha256_legacy_support_openssl_win.cc",
260         "ssl/openssl_platform_key_win.cc",
261       ]
262     }
263   }
265   if (!use_openssl_certs) {
266     sources -= [
267       "base/crypto_module_openssl.cc",
268       "base/keygen_handler_openssl.cc",
269       "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) {
280       sources -= [ "base/openssl_private_key_store_android.cc" ]
281     }
282   } 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     ]
290   }
292   if (use_glib && !is_chromeos) {
293     configs += [ "//build/config/linux:gconf" ]
294     deps += [ "//build/config/linux:gio" ]
295   }
297   if (is_linux) {
298     configs += [ "//build/config/linux:libresolv" ]
299   }
301   if (!use_nss_certs) {
302     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",
308       "cert/x509_certificate_nss.cc",
309       "ssl/client_cert_store_nss.cc",
310       "ssl/client_cert_store_nss.h",
311       "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     ]
318     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",
324         "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",
328       ]
329     }
330     if (is_chromeos) {
331       # These were already removed on non-ChromeOS.
332       sources -= [
333         "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",
337         "ssl/client_cert_store_chromeos.cc",
338         "ssl/client_cert_store_chromeos.h",
339       ]
340     }
341     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" ]
349   }
351   if (!enable_websockets) {
352     sources -= [
353       "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",
376       "websockets/websocket_handshake_challenge.cc",
377       "websockets/websocket_handshake_challenge.h",
378       "websockets/websocket_handshake_constants.cc",
379       "websockets/websocket_handshake_constants.h",
380       "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",
389       "websockets/websocket_mux.h",
390       "websockets/websocket_stream.cc",
391       "websockets/websocket_stream.h",
392     ]
393   }
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   }
410   if (is_win) {
411     sources -= [
412       "http/http_auth_handler_ntlm_portable.cc",
413       "socket/socket_libevent.cc",
414       "socket/socket_libevent.h",
415       "socket/tcp_socket_libevent.cc",
416       "socket/tcp_socket_libevent.h",
417       "udp/udp_socket_libevent.cc",
418       "udp/udp_socket_libevent.h",
419     ]
420   } 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   }
431   if (is_mac) {
432     libs = [
433       "Foundation.framework",
434       "Security.framework",
435       "SystemConfiguration.framework",
436       "resolv",
437     ]
438   }
440   if (is_ios) {
441     # Add back some sources that were otherwise filtered out. iOS needs some Mac
442     # files.
443     set_sources_assignment_filter([])
444     sources += [
445       "base/network_change_notifier_mac.cc",
446       "base/network_config_watcher_mac.cc",
447       "base/network_interfaces_mac.cc",
448       "base/network_interfaces_mac.h",
449       "base/platform_mime_util_mac.mm",
450       "proxy/proxy_resolver_mac.cc",
451       "proxy/proxy_server_mac.cc",
452     ]
453     set_sources_assignment_filter(sources_assignment_filter)
455     sources -= [ "disk_cache/blockfile/file_posix.cc" ]
456     libs = [
457       "CFNetwork.framework",
458       "MobileCoreServices.framework",
459       "Security.framework",
460       "SystemConfiguration.framework",
461       "resolv",
462     ]
463   }
465   if (is_ios || is_mac) {
466     sources += gypi_values.net_base_mac_ios_sources
467   }
469   if (is_android) {
470     # Add some Linux sources that were excluded by the filter, but which
471     # are needed.
472     set_sources_assignment_filter([])
473     sources += [
474       "base/address_tracker_linux.cc",
475       "base/address_tracker_linux.h",
476       "base/network_interfaces_linux.cc",
477       "base/network_interfaces_linux.h",
478       "base/platform_mime_util_linux.cc",
479     ]
480     set_sources_assignment_filter(sources_assignment_filter)
481     deps += [ ":net_jni_headers" ]
482   }
484   if (use_icu_alternatives_on_android) {
485     sources += [
486       "base/net_string_util_icu_alternatives_android.cc",
487       "base/net_string_util_icu_alternatives_android.h",
488     ]
489   } 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     ]
499   }
502 grit("net_resources") {
503   source = "base/net_resources.grd"
504   use_qualified_include = true
505   outputs = [
506     "grit/net_resources.h",
507     "net_resources.pak",
508     "net_resources.rc",
509   ]
512 proto_library("net_quic_proto") {
513   visibility = [ "//net" ]  # Part of the net component.
515   sources = [
516     "quic/proto/cached_network_parameters.proto",
517     "quic/proto/source_address_token.proto",
518   ]
519   cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
520   cc_include = "net/base/net_export.h"
522   defines = [ "NET_IMPLEMENTATION" ]
524   extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
527 static_library("extras") {
528   sources = gypi_values.net_extras_sources
529   configs += [ "//build/config/compiler:wexit_time_destructors" ]
530   deps = [
531     ":net",
532     "//base",
533     "//sql:sql",
534   ]
537 static_library("http_server") {
538   sources = [
539     "server/http_connection.cc",
540     "server/http_connection.h",
541     "server/http_server.cc",
542     "server/http_server.h",
543     "server/http_server_request_info.cc",
544     "server/http_server_request_info.h",
545     "server/http_server_response_info.cc",
546     "server/http_server_response_info.h",
547     "server/web_socket.cc",
548     "server/web_socket.h",
549     "server/web_socket_encoder.cc",
550     "server/web_socket_encoder.h",
551   ]
552   configs += [
553     "//build/config/compiler:no_size_t_to_int_warning",
554     "//build/config/compiler:wexit_time_destructors",
555   ]
556   deps = [
557     ":net",
558     "//base",
559   ]
562 executable("dump_cache") {
563   testonly = true
564   sources = [
565     "tools/dump_cache/cache_dumper.cc",
566     "tools/dump_cache/cache_dumper.h",
567     "tools/dump_cache/dump_cache.cc",
568     "tools/dump_cache/dump_files.cc",
569     "tools/dump_cache/dump_files.h",
570     "tools/dump_cache/simple_cache_dumper.cc",
571     "tools/dump_cache/simple_cache_dumper.h",
572     "tools/dump_cache/url_to_filename_encoder.cc",
573     "tools/dump_cache/url_to_filename_encoder.h",
574     "tools/dump_cache/url_utilities.cc",
575     "tools/dump_cache/url_utilities.h",
576   ]
578   # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
579   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
581   deps = [
582     "//base",
583     ":net",
584     ":test_support",
585   ]
588 source_set("test_support") {
589   testonly = true
590   sources = [
591     "base/load_timing_info_test_util.cc",
592     "base/load_timing_info_test_util.h",
593     "base/mock_file_stream.cc",
594     "base/mock_file_stream.h",
595     "base/test_completion_callback.cc",
596     "base/test_completion_callback.h",
597     "base/test_data_directory.cc",
598     "base/test_data_directory.h",
599     "cert/mock_cert_verifier.cc",
600     "cert/mock_cert_verifier.h",
601     "cookies/cookie_monster_store_test.cc",
602     "cookies/cookie_monster_store_test.h",
603     "cookies/cookie_store_test_callbacks.cc",
604     "cookies/cookie_store_test_callbacks.h",
605     "cookies/cookie_store_test_helpers.cc",
606     "cookies/cookie_store_test_helpers.h",
607     "disk_cache/disk_cache_test_base.cc",
608     "disk_cache/disk_cache_test_base.h",
609     "disk_cache/disk_cache_test_util.cc",
610     "disk_cache/disk_cache_test_util.h",
611     "dns/dns_test_util.cc",
612     "dns/dns_test_util.h",
613     "dns/mock_host_resolver.cc",
614     "dns/mock_host_resolver.h",
615     "dns/mock_mdns_socket_factory.cc",
616     "dns/mock_mdns_socket_factory.h",
617     "http/http_transaction_test_util.cc",
618     "http/http_transaction_test_util.h",
619     "log/test_net_log.cc",
620     "log/test_net_log.h",
621     "log/test_net_log_entry.cc",
622     "log/test_net_log_entry.h",
623     "log/test_net_log_util.cc",
624     "log/test_net_log_util.h",
625     "proxy/mock_proxy_resolver.cc",
626     "proxy/mock_proxy_resolver.h",
627     "proxy/mock_proxy_script_fetcher.cc",
628     "proxy/mock_proxy_script_fetcher.h",
629     "proxy/proxy_config_service_common_unittest.cc",
630     "proxy/proxy_config_service_common_unittest.h",
631     "socket/socket_test_util.cc",
632     "socket/socket_test_util.h",
633     "test/cert_test_util.cc",
634     "test/cert_test_util.h",
635     "test/cert_test_util_nss.cc",
636     "test/channel_id_test_util.cc",
637     "test/channel_id_test_util.h",
638     "test/ct_test_util.cc",
639     "test/ct_test_util.h",
640     "test/embedded_test_server/embedded_test_server.cc",
641     "test/embedded_test_server/embedded_test_server.h",
642     "test/embedded_test_server/http_connection.cc",
643     "test/embedded_test_server/http_connection.h",
644     "test/embedded_test_server/http_request.cc",
645     "test/embedded_test_server/http_request.h",
646     "test/embedded_test_server/http_response.cc",
647     "test/embedded_test_server/http_response.h",
648     "test/embedded_test_server/stream_listen_socket.cc",
649     "test/embedded_test_server/stream_listen_socket.h",
650     "test/embedded_test_server/tcp_listen_socket.cc",
651     "test/embedded_test_server/tcp_listen_socket.h",
652     "test/event_waiter.h",
653     "test/net_test_suite.cc",
654     "test/net_test_suite.h",
655     "test/python_utils.cc",
656     "test/python_utils.h",
657     "test/spawned_test_server/base_test_server.cc",
658     "test/spawned_test_server/base_test_server.h",
659     "test/spawned_test_server/local_test_server.cc",
660     "test/spawned_test_server/local_test_server.h",
661     "test/spawned_test_server/local_test_server_posix.cc",
662     "test/spawned_test_server/local_test_server_win.cc",
663     "test/spawned_test_server/remote_test_server.cc",
664     "test/spawned_test_server/remote_test_server.h",
665     "test/spawned_test_server/spawned_test_server.h",
666     "test/spawned_test_server/spawner_communicator.cc",
667     "test/spawned_test_server/spawner_communicator.h",
668     "test/url_request/url_request_failed_job.cc",
669     "test/url_request/url_request_failed_job.h",
670     "test/url_request/url_request_mock_data_job.cc",
671     "test/url_request/url_request_mock_data_job.h",
672     "test/url_request/url_request_slow_download_job.cc",
673     "test/url_request/url_request_slow_download_job.h",
674     "url_request/test_url_fetcher_factory.cc",
675     "url_request/test_url_fetcher_factory.h",
676     "url_request/url_request_test_util.cc",
677     "url_request/url_request_test_util.h",
678   ]
680   # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
681   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
683   public_deps = [
684     "//base",
685     "//base/test:test_support",
686     "//crypto",
687     "//net",
688     "//net/tools/tld_cleanup",
689     "//testing/gmock",
690     "//testing/gtest",
691     "//url",
692   ]
694   if (!is_ios) {
695     public_deps += [ "//third_party/protobuf:py_proto" ]
696   }
698   if (!use_openssl && (use_nss_certs || is_ios)) {
699     public_deps += [ "//crypto:platform" ]
700   }
702   if (!is_android) {
703     sources -= [
704       "test/spawned_test_server/remote_test_server.cc",
705       "test/spawned_test_server/remote_test_server.h",
706       "test/spawned_test_server/spawner_communicator.cc",
707       "test/spawned_test_server/spawner_communicator.h",
708     ]
709   }
711   if (use_v8_in_net) {
712     public_deps += [ ":net_with_v8" ]
713   }
715   if (!enable_mdns) {
716     sources -= [
717       "dns/mock_mdns_socket_factory.cc",
718       "dns/mock_mdns_socket_factory.h",
719     ]
720   }
722   if (!use_nss_certs) {
723     sources -= [ "test/cert_test_util_nss.cc" ]
724   }
726   if (!disable_file_support) {
727     sources += [
728       "test/url_request/url_request_mock_http_job.cc",
729       "test/url_request/url_request_mock_http_job.h",
730       "url_request/test_url_request_interceptor.cc",
731       "url_request/test_url_request_interceptor.h",
732     ]
733   }
736 source_set("balsa") {
737   sources = [
738     "tools/balsa/balsa_enums.h",
739     "tools/balsa/balsa_frame.cc",
740     "tools/balsa/balsa_frame.h",
741     "tools/balsa/balsa_headers.cc",
742     "tools/balsa/balsa_headers.h",
743     "tools/balsa/balsa_headers_token_utils.cc",
744     "tools/balsa/balsa_headers_token_utils.h",
745     "tools/balsa/balsa_visitor_interface.h",
746     "tools/balsa/http_message_constants.cc",
747     "tools/balsa/http_message_constants.h",
748     "tools/balsa/noop_balsa_visitor.h",
749     "tools/balsa/simple_buffer.cc",
750     "tools/balsa/simple_buffer.h",
751     "tools/balsa/split.cc",
752     "tools/balsa/split.h",
753     "tools/balsa/string_piece_utils.h",
754     "tools/quic/spdy_balsa_utils.cc",
755     "tools/quic/spdy_balsa_utils.h",
756   ]
757   deps = [
758     ":net",
759     "//base",
760     "//url",
761   ]
764 if (use_v8_in_net) {
765   component("net_with_v8") {
766     sources = [
767       "proxy/proxy_resolver_v8.cc",
768       "proxy/proxy_resolver_v8.h",
769       "proxy/proxy_resolver_v8_tracing.cc",
770       "proxy/proxy_resolver_v8_tracing.h",
771       "proxy/proxy_resolver_v8_tracing_wrapper.cc",
772       "proxy/proxy_resolver_v8_tracing_wrapper.h",
773       "proxy/proxy_service_v8.cc",
774       "proxy/proxy_service_v8.h",
775     ]
777     defines = [ "NET_IMPLEMENTATION" ]
778     configs += [
779       "//build/config/compiler:no_size_t_to_int_warning",
780       "//build/config/compiler:wexit_time_destructors",
781     ]
783     public_deps = [
784       ":net",
785     ]
786     deps = [
787       "//base",
788       "//gin",
789       "//url",
790       "//v8",
791     ]
792   }
795 if (use_v8_in_net && !is_android) {
796   source_set("net_browser_services") {
797     sources = [
798       "dns/mojo_host_resolver_impl.cc",
799       "dns/mojo_host_resolver_impl.h",
800       "proxy/in_process_mojo_proxy_resolver_factory.cc",
801       "proxy/in_process_mojo_proxy_resolver_factory.h",
802       "proxy/mojo_proxy_resolver_factory.h",
803       "proxy/proxy_resolver_factory_mojo.cc",
804       "proxy/proxy_resolver_factory_mojo.h",
805       "proxy/proxy_service_mojo.cc",
806       "proxy/proxy_service_mojo.h",
807     ]
809     public_deps = [
810       ":mojo_type_converters",
811       ":net",
812       "//base",
813       "//mojo/common",
814       "//net/interfaces",
815       "//third_party/mojo/src/mojo/public/cpp/bindings",
817       # NOTE(amistry): As long as we support in-process Mojo v8 PAC, we need
818       # this dependency since in_process_mojo_proxy_resolver_factory creates
819       # the utility process side Mojo services in the browser process.
820       # Ultimately, this will go away when we only support out-of-process.
821       ":net_utility_services",
822     ]
823   }
825   source_set("mojo_type_converters") {
826     sources = [
827       "dns/mojo_host_type_converters.cc",
828       "dns/mojo_host_type_converters.h",
829       "proxy/mojo_proxy_type_converters.cc",
830       "proxy/mojo_proxy_type_converters.h",
831     ]
833     public_deps = [
834       ":net",
835       "//net/interfaces",
836       "//third_party/mojo/src/mojo/public/cpp/bindings",
837     ]
838   }
840   source_set("net_utility_services") {
841     sources = [
842       "dns/host_resolver_mojo.cc",
843       "dns/host_resolver_mojo.h",
844       "proxy/mojo_proxy_resolver_factory_impl.cc",
845       "proxy/mojo_proxy_resolver_factory_impl.h",
846       "proxy/mojo_proxy_resolver_impl.cc",
847       "proxy/mojo_proxy_resolver_impl.h",
848       "proxy/proxy_resolver_error_observer_mojo.cc",
849       "proxy/proxy_resolver_error_observer_mojo.h",
850     ]
852     deps = [
853       ":net_with_v8",
854     ]
856     public_deps = [
857       ":mojo_type_converters",
858       ":net",
859       "//mojo/common",
860       "//net/interfaces",
861       "//third_party/mojo/src/mojo/public/cpp/bindings",
862     ]
863   }
866 if (!is_ios && !is_android) {
867   executable("crash_cache") {
868     testonly = true
869     sources = [
870       "tools/crash_cache/crash_cache.cc",
871     ]
873     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
874     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
875     deps = [
876       ":net",
877       ":test_support",
878       "//base",
879     ]
880   }
882   executable("crl_set_dump") {
883     testonly = true
884     sources = [
885       "tools/crl_set_dump/crl_set_dump.cc",
886     ]
888     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
889     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
890     deps = [
891       ":net",
892       "//base",
893     ]
894   }
896   executable("dns_fuzz_stub") {
897     testonly = true
898     sources = [
899       "tools/dns_fuzz_stub/dns_fuzz_stub.cc",
900     ]
902     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
903     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
904     deps = [
905       ":net",
906       "//base",
907     ]
908   }
910   executable("gdig") {
911     testonly = true
912     sources = [
913       "tools/gdig/file_net_log.cc",
914       "tools/gdig/gdig.cc",
915     ]
916     deps = [
917       ":net",
918       "//base",
919     ]
920   }
922   executable("get_server_time") {
923     testonly = true
924     sources = [
925       "tools/get_server_time/get_server_time.cc",
926     ]
928     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
929     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
930     deps = [
931       ":net",
932       "//base",
933       "//base:i18n",
934       "//url",
935     ]
936   }
938   executable("hpack_example_generator") {
939     testonly = true
940     sources = [
941       "spdy/fuzzing/hpack_example_generator.cc",
942     ]
944     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
945     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
946     deps = [
947       "//base",
948       ":net",
949     ]
950   }
952   executable("hpack_fuzz_mutator") {
953     testonly = true
954     sources = [
955       "spdy/fuzzing/hpack_fuzz_mutator.cc",
956     ]
958     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
959     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
960     deps = [
961       "//base",
962       ":net",
963     ]
964   }
966   executable("hpack_fuzz_wrapper") {
967     testonly = true
968     sources = [
969       "spdy/fuzzing/hpack_fuzz_wrapper.cc",
970     ]
972     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
973     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
974     deps = [
975       "//base",
976       ":net",
977     ]
978   }
980   if (use_v8_in_net) {
981     executable("net_watcher") {
982       testonly = true
983       sources = [
984         "tools/net_watcher/net_watcher.cc",
985       ]
986       deps = [
987         ":net",
988         ":net_with_v8",
989         "//base",
990       ]
992       if (is_desktop_linux) {
993         configs += [
994           "//build/config/linux:gconf",
995           "//build/config/linux:glib",
996         ]
997         deps += [ "//build/config/linux:gio" ]
998       }
999     }
1000   }
1002   executable("run_testserver") {
1003     testonly = true
1004     sources = [
1005       "tools/testserver/run_testserver.cc",
1006     ]
1007     deps = [
1008       ":net",  # TODO(brettw) bug 363749: this shouldn't be necessary. It's not
1009                # in the GYP build, and can be removed when the bug is fixed.
1011       ":test_support",
1012       "//base",
1013       "//base/test:test_support",
1014       "//testing/gtest",
1015     ]
1016   }
1018   executable("stress_cache") {
1019     testonly = true
1020     sources = [
1021       "tools/stress_cache/stress_cache.cc",
1022     ]
1024     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1025     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1026     deps = [
1027       ":net",
1028       ":test_support",
1029       "//base",
1030     ]
1031   }
1033   executable("tld_cleanup") {
1034     sources = [
1035       "tools/tld_cleanup/tld_cleanup.cc",
1036     ]
1038     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1039     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1040     deps = [
1041       "//base",
1042       "//base:i18n",
1043       "//net/tools/tld_cleanup",
1044     ]
1045   }
1048 if (is_linux) {
1049   static_library("epoll_server") {
1050     sources = [
1051       "tools/epoll_server/epoll_server.cc",
1052       "tools/epoll_server/epoll_server.h",
1053     ]
1054     deps = [
1055       ":net",
1056       "//base",
1057     ]
1058   }
1060   static_library("flip_in_mem_edsm_server_base") {
1061     testonly = true
1062     sources = [
1063       "tools/dump_cache/url_to_filename_encoder.cc",
1064       "tools/dump_cache/url_to_filename_encoder.h",
1065       "tools/dump_cache/url_utilities.cc",
1066       "tools/dump_cache/url_utilities.h",
1067       "tools/flip_server/acceptor_thread.cc",
1068       "tools/flip_server/acceptor_thread.h",
1069       "tools/flip_server/constants.h",
1070       "tools/flip_server/create_listener.cc",
1071       "tools/flip_server/create_listener.h",
1072       "tools/flip_server/flip_config.cc",
1073       "tools/flip_server/flip_config.h",
1074       "tools/flip_server/http_interface.cc",
1075       "tools/flip_server/http_interface.h",
1076       "tools/flip_server/loadtime_measurement.h",
1077       "tools/flip_server/mem_cache.cc",
1078       "tools/flip_server/mem_cache.h",
1079       "tools/flip_server/output_ordering.cc",
1080       "tools/flip_server/output_ordering.h",
1081       "tools/flip_server/ring_buffer.cc",
1082       "tools/flip_server/ring_buffer.h",
1083       "tools/flip_server/sm_connection.cc",
1084       "tools/flip_server/sm_connection.h",
1085       "tools/flip_server/sm_interface.h",
1086       "tools/flip_server/spdy_interface.cc",
1087       "tools/flip_server/spdy_interface.h",
1088       "tools/flip_server/spdy_ssl.cc",
1089       "tools/flip_server/spdy_ssl.h",
1090       "tools/flip_server/spdy_util.cc",
1091       "tools/flip_server/spdy_util.h",
1092       "tools/flip_server/streamer_interface.cc",
1093       "tools/flip_server/streamer_interface.h",
1094     ]
1095     deps = [
1096       ":balsa",
1097       ":epoll_server",
1098       ":net",
1099       "//base",
1100       "//third_party/boringssl",
1101     ]
1102   }
1104   executable("flip_in_mem_edsm_server_unittests") {
1105     testonly = true
1106     sources = [
1107       "tools/flip_server/flip_test_utils.cc",
1108       "tools/flip_server/flip_test_utils.h",
1109       "tools/flip_server/http_interface_test.cc",
1110       "tools/flip_server/mem_cache_test.cc",
1111       "tools/flip_server/run_all_tests.cc",
1112       "tools/flip_server/spdy_interface_test.cc",
1113     ]
1114     deps = [
1115       ":balsa",
1116       ":flip_in_mem_edsm_server_base",
1117       ":net",
1118       ":test_support",
1119       "//testing/gtest",
1120       "//testing/gmock",
1121       "//third_party/boringssl",
1122     ]
1123   }
1125   executable("flip_in_mem_edsm_server") {
1126     testonly = true
1127     sources = [
1128       "tools/flip_server/flip_in_mem_edsm_server.cc",
1129     ]
1130     deps = [
1131       ":balsa",
1132       ":flip_in_mem_edsm_server_base",
1133       ":net",
1134       "//base",
1135     ]
1136   }
1138   source_set("epoll_quic_tools") {
1139     sources = [
1140       "tools/quic/quic_client.cc",
1141       "tools/quic/quic_client.h",
1142       "tools/quic/quic_default_packet_writer.cc",
1143       "tools/quic/quic_default_packet_writer.h",
1144       "tools/quic/quic_epoll_clock.cc",
1145       "tools/quic/quic_epoll_clock.h",
1146       "tools/quic/quic_epoll_connection_helper.cc",
1147       "tools/quic/quic_epoll_connection_helper.h",
1148       "tools/quic/quic_packet_reader.cc",
1149       "tools/quic/quic_packet_reader.h",
1150       "tools/quic/quic_packet_writer_wrapper.cc",
1151       "tools/quic/quic_packet_writer_wrapper.h",
1152       "tools/quic/quic_server.cc",
1153       "tools/quic/quic_server.h",
1154       "tools/quic/quic_socket_utils.cc",
1155       "tools/quic/quic_socket_utils.h",
1156     ]
1157     deps = [
1158       ":balsa",
1159       ":epoll_server",
1160       ":net",
1161       "//base",
1162       "//base/third_party/dynamic_annotations",
1163       "//crypto",
1164       "//third_party/boringssl",
1165       "//url",
1166     ]
1167   }
1169   executable("epoll_quic_client") {
1170     sources = [
1171       "tools/quic/quic_client_bin.cc",
1172     ]
1173     deps = [
1174       ":balsa",
1175       ":epoll_server",
1176       ":epoll_quic_tools",
1177       ":net",
1178       ":simple_quic_tools",
1179       "//base",
1180       "//third_party/boringssl",
1181     ]
1182   }
1184   executable("epoll_quic_server") {
1185     sources = [
1186       "tools/quic/quic_server_bin.cc",
1187     ]
1188     deps = [
1189       ":balsa",
1190       ":epoll_server",
1191       ":epoll_quic_tools",
1192       ":net",
1193       ":simple_quic_tools",
1194       "//base",
1195       "//third_party/boringssl",
1196     ]
1197   }
1200 if (is_android) {
1201   generate_jni("net_jni_headers") {
1202     sources = [
1203       "android/java/src/org/chromium/net/AndroidCertVerifyResult.java",
1204       "android/java/src/org/chromium/net/AndroidKeyStore.java",
1205       "android/java/src/org/chromium/net/AndroidNetworkLibrary.java",
1206       "android/java/src/org/chromium/net/AndroidPrivateKey.java",
1207       "android/java/src/org/chromium/net/GURLUtils.java",
1208       "android/java/src/org/chromium/net/NetworkChangeNotifier.java",
1209       "android/java/src/org/chromium/net/ProxyChangeListener.java",
1210       "android/java/src/org/chromium/net/X509Util.java",
1211     ]
1212     jni_package = "net"
1213   }
1214   generate_jni("net_test_jni_headers") {
1215     sources = [
1216       "android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java",
1217     ]
1218     jni_package = "net"
1219   }
1222 if (is_android || is_linux) {
1223   executable("disk_cache_memory_test") {
1224     testonly = true
1225     sources = [
1226       "tools/disk_cache_memory_test/disk_cache_memory_test.cc",
1227     ]
1228     deps = [
1229       ":net",
1230       "//base",
1231     ]
1232   }
1235 source_set("simple_quic_tools") {
1236   sources = [
1237     "tools/quic/quic_client_session.cc",
1238     "tools/quic/quic_client_session.h",
1239     "tools/quic/quic_dispatcher.cc",
1240     "tools/quic/quic_dispatcher.h",
1241     "tools/quic/quic_in_memory_cache.cc",
1242     "tools/quic/quic_in_memory_cache.h",
1243     "tools/quic/quic_per_connection_packet_writer.cc",
1244     "tools/quic/quic_per_connection_packet_writer.h",
1245     "tools/quic/quic_server_session.cc",
1246     "tools/quic/quic_server_session.h",
1247     "tools/quic/quic_simple_client.cc",
1248     "tools/quic/quic_simple_client.h",
1249     "tools/quic/quic_simple_per_connection_packet_writer.cc",
1250     "tools/quic/quic_simple_per_connection_packet_writer.h",
1251     "tools/quic/quic_simple_server.cc",
1252     "tools/quic/quic_simple_server.h",
1253     "tools/quic/quic_simple_server_packet_writer.cc",
1254     "tools/quic/quic_simple_server_packet_writer.h",
1255     "tools/quic/quic_spdy_client_stream.cc",
1256     "tools/quic/quic_spdy_client_stream.h",
1257     "tools/quic/quic_spdy_server_stream.cc",
1258     "tools/quic/quic_spdy_server_stream.h",
1259     "tools/quic/quic_time_wait_list_manager.cc",
1260     "tools/quic/quic_time_wait_list_manager.h",
1261     "tools/quic/synchronous_host_resolver.cc",
1262     "tools/quic/synchronous_host_resolver.h",
1263   ]
1264   deps = [
1265     ":net",
1266     "//base",
1267     "//base/third_party/dynamic_annotations",
1268     "//url",
1269   ]
1272 executable("quic_client") {
1273   sources = [
1274     "tools/quic/quic_simple_client_bin.cc",
1275   ]
1276   deps = [
1277     ":net",
1278     ":simple_quic_tools",
1279     "//base",
1280     "//url",
1281   ]
1284 executable("quic_server") {
1285   sources = [
1286     "tools/quic/quic_simple_server_bin.cc",
1287   ]
1288   deps = [
1289     ":net",
1290     ":simple_quic_tools",
1291     "//base",
1292     "//third_party/boringssl",
1293     "//third_party/protobuf:protobuf_lite",
1294   ]
1297 # TODO(GYP) make this compile on Android, we need some native test deps done.
1298 # TODO(GYP) Also doesn't work on Mac, need to figure out why not.
1299 if (!is_android && !is_mac) {
1300   test("net_unittests") {
1301     sources = gypi_values.net_test_sources
1303     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1304     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1305     defines = []
1307     deps = [
1308       ":balsa",
1309       ":extras",
1310       ":http_server",
1311       ":net",
1312       ":simple_quic_tools",
1313       ":test_support",
1314       "//base",
1315       "//base:i18n",
1316       "//base:prefs_test_support",
1317       "//base/allocator",
1318       "//base/third_party/dynamic_annotations",
1319       "//crypto",
1320       "//crypto:platform",
1321       "//crypto:test_support",
1322       "//gin",
1323       "//net/base/registry_controlled_domains",
1324       "//sql",
1325       "//testing/gmock",
1326       "//testing/gtest",
1327       "//third_party/zlib",
1328       "//url",
1329     ]
1331     if (is_desktop_linux) {
1332       deps += [ ":epoll_quic_tools" ]
1333     }
1334     if (is_linux) {
1335       sources += gypi_values.net_linux_test_sources
1336       deps += [
1337         ":balsa",
1338         ":epoll_server",
1339         ":flip_in_mem_edsm_server_base",
1340         ":epoll_quic_tools",
1341       ]
1342     }
1344     if (is_mac || is_ios) {
1345       sources += gypi_values.net_base_test_mac_ios_sources
1346     }
1348     if (is_chromeos) {
1349       sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ]
1350     }
1352     if (is_android) {
1353       sources -= [
1354         # See bug http://crbug.com/344533.
1355         "disk_cache/blockfile/index_table_v3_unittest.cc",
1357         # No res_ninit() et al on Android, so this doesn't make a lot of
1358         # sense.
1359         "dns/dns_config_service_posix_unittest.cc",
1360       ]
1361       deps += [ ":net_test_jni_headers" ]
1362       isolate_file = "net_unittests.isolate"
1363     }
1365     if (v8_use_external_startup_data) {
1366       deps += [ "//gin" ]
1367     }
1369     if (!use_nss_certs) {
1370       sources -= [
1371         "cert/nss_cert_database_unittest.cc",
1372         "ssl/client_cert_store_nss_unittest.cc",
1373       ]
1374       if (is_chromeos) {  # Already removed for all non-ChromeOS builds.
1375         sources -= [
1376           "cert/nss_cert_database_chromeos_unittest.cc",
1377           "cert/nss_profile_filter_chromeos_unittest.cc",
1378           "ssl/client_cert_store_chromeos_unittest.cc",
1379         ]
1380       }
1381     }
1383     if (use_openssl) {
1384       # When building for OpenSSL, we need to exclude NSS specific tests
1385       # or functionality not supported by OpenSSL yet.
1386       # TODO(bulach): Add equivalent tests when the underlying
1387       #               functionality is ported to OpenSSL.
1388       sources -= [ "quic/test_tools/crypto_test_utils_nss.cc" ]
1389     } else {
1390       sources -= [
1391         "cert/x509_util_openssl_unittest.cc",
1392         "quic/test_tools/crypto_test_utils_openssl.cc",
1393         "socket/ssl_client_socket_openssl_unittest.cc",
1394         "ssl/ssl_client_session_cache_openssl_unittest.cc",
1395       ]
1396     }
1398     if (use_kerberos) {
1399       defines += [ "USE_KERBEROS" ]
1400     } else {
1401       sources -= [
1402         "http/http_auth_gssapi_posix_unittest.cc",
1403         "http/http_auth_handler_negotiate_unittest.cc",
1404         "http/mock_gssapi_library_posix.cc",
1405         "http/mock_gssapi_library_posix.h",
1406       ]
1407     }
1409     if (use_openssl || (!is_desktop_linux && !is_chromeos && !is_ios)) {
1410       # Only include this test when on Posix and using NSS for
1411       # cert verification or on iOS (which also uses NSS for certs).
1412       sources -= [ "cert_net/nss_ocsp_unittest.cc" ]
1413     }
1415     if (!use_openssl_certs) {
1416       sources -= [ "ssl/openssl_client_key_store_unittest.cc" ]
1417     }
1419     if (!enable_websockets) {
1420       sources -= [
1421         "server/http_connection_unittest.cc",
1422         "server/http_server_response_info_unittest.cc",
1423         "server/http_server_unittest.cc",
1424         "server/web_socket_encoder_unittest.cc",
1425         "websockets/websocket_basic_stream_test.cc",
1426         "websockets/websocket_channel_test.cc",
1427         "websockets/websocket_deflate_predictor_impl_test.cc",
1428         "websockets/websocket_deflate_stream_test.cc",
1429         "websockets/websocket_deflater_test.cc",
1430         "websockets/websocket_end_to_end_test.cc",
1431         "websockets/websocket_errors_test.cc",
1432         "websockets/websocket_extension_parser_test.cc",
1433         "websockets/websocket_frame_parser_test.cc",
1434         "websockets/websocket_frame_test.cc",
1435         "websockets/websocket_handshake_challenge_test.cc",
1436         "websockets/websocket_handshake_stream_create_helper_test.cc",
1437         "websockets/websocket_inflater_test.cc",
1438         "websockets/websocket_stream_test.cc",
1439         "websockets/websocket_test_util.cc",
1440         "websockets/websocket_test_util.h",
1441       ]
1442       deps -= [ ":http_server" ]
1443     }
1445     if (disable_file_support) {
1446       sources -= [
1447         "base/directory_lister_unittest.cc",
1448         "url_request/url_request_file_job_unittest.cc",
1449       ]
1450     }
1452     if (disable_ftp_support) {
1453       sources -= [
1454         "ftp/ftp_auth_cache_unittest.cc",
1455         "ftp/ftp_ctrl_response_buffer_unittest.cc",
1456         "ftp/ftp_directory_listing_parser_ls_unittest.cc",
1457         "ftp/ftp_directory_listing_parser_netware_unittest.cc",
1458         "ftp/ftp_directory_listing_parser_os2_unittest.cc",
1459         "ftp/ftp_directory_listing_parser_unittest.cc",
1460         "ftp/ftp_directory_listing_parser_unittest.h",
1461         "ftp/ftp_directory_listing_parser_vms_unittest.cc",
1462         "ftp/ftp_directory_listing_parser_windows_unittest.cc",
1463         "ftp/ftp_network_transaction_unittest.cc",
1464         "ftp/ftp_util_unittest.cc",
1465         "url_request/url_request_ftp_job_unittest.cc",
1466       ]
1467     }
1469     if (!enable_built_in_dns) {
1470       sources -= [
1471         "dns/address_sorter_posix_unittest.cc",
1472         "dns/address_sorter_unittest.cc",
1473       ]
1474     }
1476     # Always need use_v8_in_net to be 1 to run on Android, so just remove
1477     # net_unittest's dependency on v8 when using icu alternatives instead of
1478     # setting use_v8_in_net to 0.
1479     if (use_v8_in_net && !use_icu_alternatives_on_android) {
1480       deps += [ ":net_with_v8" ]
1481     } else {
1482       sources -= [
1483         "proxy/proxy_resolver_v8_tracing_unittest.cc",
1484         "proxy/proxy_resolver_v8_tracing_wrapper_unittest.cc",
1485         "proxy/proxy_resolver_v8_unittest.cc",
1486       ]
1487     }
1489     if (use_v8_in_net && !is_android) {
1490       deps += [
1491         ":net_browser_services",
1492         ":net_utility_services",
1493         "//mojo/environment:chromium",
1494         "//third_party/mojo/src/mojo/edk/system",
1495       ]
1496     } else {
1497       sources -= [
1498         "dns/host_resolver_mojo_unittest.cc",
1499         "dns/mojo_host_resolver_impl_unittest.cc",
1500         "proxy/mojo_proxy_resolver_factory_impl_unittest.cc",
1501         "proxy/mojo_proxy_resolver_impl_unittest.cc",
1502         "proxy/proxy_resolver_error_observer_mojo_unittest.cc",
1503         "proxy/proxy_resolver_factory_mojo_unittest.cc",
1504         "proxy/proxy_service_mojo_unittest.cc",
1505       ]
1506     }
1508     if (!enable_mdns) {
1509       sources -= [
1510         "dns/mdns_cache_unittest.cc",
1511         "dns/mdns_client_unittest.cc",
1512         "dns/record_parsed_unittest.cc",
1513         "dns/record_rdata_unittest.cc",
1514       ]
1515     }
1517     if (is_ios) {
1518       # TODO(GYP)
1519       #  'actions': [
1520       #    {
1521       #      'action_name': 'copy_test_data',
1522       #      'variables': {
1523       #        'test_data_files': [
1524       #          'data/ssl/certificates/',
1525       #          'data/test.html',
1526       #          'data/url_request_unittest/',
1527       #        ],
1528       #        'test_data_prefix': 'net',
1529       #      },
1530       #      'includes': [ '../build/copy_test_data_ios.gypi' ],
1531       #    },
1532       #  ],
1533       sources -= [
1534         # TODO(droger): The following tests are disabled because the
1535         # implementation is missing or incomplete.
1536         # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS.
1537         "base/keygen_handler_unittest.cc",
1538         "disk_cache/backend_unittest.cc",
1539         "disk_cache/blockfile/block_files_unittest.cc",
1541         # Need to read input data files.
1542         "filter/gzip_filter_unittest.cc",
1543         "socket/ssl_server_socket_unittest.cc",
1544         "spdy/fuzzing/hpack_fuzz_util_test.cc",
1546         # Need TestServer.
1547         "cert_net/cert_net_fetcher_impl_unittest.cc",
1548         "proxy/proxy_script_fetcher_impl_unittest.cc",
1549         "socket/ssl_client_socket_unittest.cc",
1550         "url_request/url_fetcher_impl_unittest.cc",
1551         "url_request/url_request_context_builder_unittest.cc",
1553         # Needs GetAppOutput().
1554         "test/python_utils_unittest.cc",
1556         # The following tests are disabled because they don't apply to
1557         # iOS.
1558         # OS is not "linux" or "freebsd" or "openbsd".
1559         "socket/unix_domain_client_socket_posix_unittest.cc",
1560         "socket/unix_domain_listen_socket_posix_unittest.cc",
1561         "socket/unix_domain_server_socket_posix_unittest.cc",
1563         # See bug http://crbug.com/344533.
1564         "disk_cache/blockfile/index_table_v3_unittest.cc",
1565       ]
1566     }
1568     if (is_android) {
1569       sources -= [ "dns/dns_config_service_posix_unittest.cc" ]
1571       # TODO(GYP)
1572       # # TODO(mmenke):  This depends on test_support_base, which depends on
1573       # #                icu.  Figure out a way to remove that dependency.
1574       # 'dependencies': [
1575       #   '../testing/android/native_test.gyp:native_test_native_code',
1576       # ]
1578       set_sources_assignment_filter([])
1579       sources += [ "base/address_tracker_linux_unittest.cc" ]
1580       set_sources_assignment_filter(sources_assignment_filter)
1581     }
1583     if (use_icu_alternatives_on_android) {
1584       sources -= [
1585         "base/filename_util_unittest.cc",
1586         "base/net_util_icu_unittest.cc",
1587       ]
1588       deps -= [ "//base:i18n" ]
1589     }
1590   }
1591 }  # !is_android && !is_win && !is_mac
1593 executable("net_perftests") {
1594   testonly = true
1595   sources = [
1596     "base/mime_sniffer_perftest.cc",
1597     "cookies/cookie_monster_perftest.cc",
1598     "disk_cache/blockfile/disk_cache_perftest.cc",
1599     "extras/sqlite/sqlite_persistent_cookie_store_perftest.cc",
1600     "proxy/proxy_resolver_perftest.cc",
1601     "udp/udp_socket_perftest.cc",
1602   ]
1604   # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1605   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1606   deps = [
1607     "//base",
1608     "//base:i18n",
1609     "//base/test:test_support_perf",
1610     "//testing/gtest",
1611     "//url",
1612     ":extras",
1613     ":net",
1614     ":test_support",
1615   ]
1617   if (enable_websockets) {
1618     sources += [ "websockets/websocket_frame_perftest.cc" ]
1619   }
1621   if (use_v8_in_net) {
1622     deps += [ ":net_with_v8" ]
1623   } else {
1624     sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1625   }
1627   if (is_win && icu_use_data_file) {
1628     # This is needed to trigger the dll copy step on windows.
1629     # TODO(mark): Specifying this here shouldn't be necessary.
1630     deps += [ "//third_party/icu:icudata" ]
1631   }