Roll src/third_party/skia f16c00e:f89f60f
[chromium-blink-merge.git] / net / BUILD.gn
blob4935b6765732616601974e68565185b1ee3cad4c
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")
12 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni.
13 # Currently, that file can't be imported multiple times.  Make this always
14 # imported when http://crbug.com/393704 is fixed.
15 if (!is_android) {
16   import("//tools/grit/grit_rule.gni")
19 if (is_android) {
20   import("//build/config/android/config.gni")
21   import("//build/config/android/rules.gni")
22 } else if (is_mac) {
23   import("//build/config/mac/mac_sdk.gni")
26 # The list of net files is kept in net.gypi. Read it.
27 gypi_values = exec_script("//build/gypi_to_gn.py",
28                           [ rebase_path("net.gypi") ],
29                           "scope",
30                           [ "net.gypi" ])
32 # Disable Kerberos on ChromeOS, Android and iOS, at least for now. It needs
33 # configuration (krb5.conf and so on).
34 use_kerberos = !is_chromeos && !is_android && !is_ios
36 # The way the cache uses mmap() is inefficient on some Android devices. If
37 # this flag is set, we hackily avoid using mmap() in the disk cache. We are
38 # pretty confident that mmap-ing the index would not hurt any existing x86
39 # android devices, but we cannot be so sure about the variety of ARM devices.
40 # So enable it for x86 only for now.
41 posix_avoid_mmap = is_android && cpu_arch != "x86"
43 # WebSockets and socket stream code are used everywhere except iOS.
44 enable_websockets = !is_ios
45 use_v8_in_net = !is_ios
46 enable_built_in_dns = !is_ios
47 disable_ftp_support = is_ios
49 declare_args() {
50   # Disables support for file URLs.  File URL support requires use of icu.
51   disable_file_support = false
54 config("net_config") {
55   defines = []
56   if (posix_avoid_mmap) {
57     defines += [ "POSIX_AVOID_MMAP" ]
58   }
59   if (disable_file_support) {
60     defines += [ "DISABLE_FILE_SUPPORT" ]
61   }
64 # Disables Windows warning about size to int truncations.
65 # TODO(jschuh): crbug.com/167187 fix this and delete this config.
66 config("net_win_size_truncation") {
67   if (is_win) {
68     cflags = [ "/wd4267" ]
69   }
72 component("net") {
73   sources =
74       gypi_values.net_nacl_common_sources + gypi_values.net_non_nacl_sources
76   cflags = []
77   defines = [
78     # TODO(GYP) Note that he GYP file supports linux_link_kerberos (defaults to
79     # 0) which implies that we run pkg_config on kerberos and link to that
80     # rather than setting this define which will dynamically open it. That
81     # doesn't seem to be set in the regular builds, so we're skipping this
82     # capability here.
83     "DLOPEN_KERBEROS",
84     "NET_IMPLEMENTATION",
85   ]
86   configs += [ ":net_win_size_truncation" ]
87   public_configs = [ ":net_config" ]
88   include_dirs = []
90   public_deps = [
91     "//crypto",
92     "//crypto:platform",
93   ]
94   deps = [
95     ":net_resources",
96     "//base",
97     "//base:i18n",
98     "//base:prefs",
99     "//base/third_party/dynamic_annotations",
100     "//net/base/registry_controlled_domains",
101     "//sdch",
102     "//third_party/icu",
103     "//third_party/zlib",
104     "//url",
105   ]
107   if (use_kerberos) {
108     defines += [ "USE_KERBEROS" ]
109     if (is_android) {
110       include_dirs += [ "/usr/include/kerberosV" ]
111     }
112   } else {
113     sources -= [
114       "http/http_auth_gssapi_posix.cc",
115       "http/http_auth_gssapi_posix.h",
116       "http/http_auth_handler_negotiate.cc",
117       "http/http_auth_handler_negotiate.h",
118     ]
119   }
121   if (is_posix) {
122     if (posix_avoid_mmap) {
123       sources -= [ "disk_cache/blockfile/mapped_file_posix.cc" ]
124     } else {
125       sources -= [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ]
126     }
127   }
129   if (disable_file_support) {
130     sources -= [
131       "base/directory_lister.cc",
132       "base/directory_lister.h",
133       "url_request/file_protocol_handler.cc",
134       "url_request/file_protocol_handler.h",
135       "url_request/url_request_file_dir_job.cc",
136       "url_request/url_request_file_dir_job.h",
137       "url_request/url_request_file_job.cc",
138       "url_request/url_request_file_job.h",
139     ]
140   }
142   if (disable_ftp_support) {
143     sources -= [
144       "ftp/ftp_auth_cache.cc",
145       "ftp/ftp_auth_cache.h",
146       "ftp/ftp_ctrl_response_buffer.cc",
147       "ftp/ftp_ctrl_response_buffer.h",
148       "ftp/ftp_directory_listing_parser.cc",
149       "ftp/ftp_directory_listing_parser.h",
150       "ftp/ftp_directory_listing_parser_ls.cc",
151       "ftp/ftp_directory_listing_parser_ls.h",
152       "ftp/ftp_directory_listing_parser_netware.cc",
153       "ftp/ftp_directory_listing_parser_netware.h",
154       "ftp/ftp_directory_listing_parser_os2.cc",
155       "ftp/ftp_directory_listing_parser_os2.h",
156       "ftp/ftp_directory_listing_parser_vms.cc",
157       "ftp/ftp_directory_listing_parser_vms.h",
158       "ftp/ftp_directory_listing_parser_windows.cc",
159       "ftp/ftp_directory_listing_parser_windows.h",
160       "ftp/ftp_network_layer.cc",
161       "ftp/ftp_network_layer.h",
162       "ftp/ftp_network_session.cc",
163       "ftp/ftp_network_session.h",
164       "ftp/ftp_network_transaction.cc",
165       "ftp/ftp_network_transaction.h",
166       "ftp/ftp_request_info.h",
167       "ftp/ftp_response_info.cc",
168       "ftp/ftp_response_info.h",
169       "ftp/ftp_server_type_histograms.cc",
170       "ftp/ftp_server_type_histograms.h",
171       "ftp/ftp_transaction.h",
172       "ftp/ftp_transaction_factory.h",
173       "ftp/ftp_util.cc",
174       "ftp/ftp_util.h",
175       "url_request/ftp_protocol_handler.cc",
176       "url_request/ftp_protocol_handler.h",
177       "url_request/url_request_ftp_job.cc",
178       "url_request/url_request_ftp_job.h",
179     ]
180   }
182   if (enable_built_in_dns) {
183     defines += [ "ENABLE_BUILT_IN_DNS" ]
184   } else {
185     sources -= [
186       "dns/address_sorter_posix.cc",
187       "dns/address_sorter_posix.h",
188       "dns/dns_client.cc",
189     ]
190   }
192   if (use_openssl) {
193     sources -= [
194       "base/nss_memio.c",
195       "base/nss_memio.h",
196       "cert/ct_log_verifier_nss.cc",
197       "cert/ct_objects_extractor_nss.cc",
198       "cert/jwk_serializer_nss.cc",
199       "cert/scoped_nss_types.h",
200       "cert/test_root_certs_nss.cc",
201       "cert/x509_util_nss.cc",
202       "cert/x509_util_nss.h",
203       "ocsp/nss_ocsp.cc",
204       "ocsp/nss_ocsp.h",
205       "quic/crypto/aead_base_decrypter_nss.cc",
206       "quic/crypto/aead_base_encrypter_nss.cc",
207       "quic/crypto/aes_128_gcm_12_decrypter_nss.cc",
208       "quic/crypto/aes_128_gcm_12_encrypter_nss.cc",
209       "quic/crypto/chacha20_poly1305_decrypter_nss.cc",
210       "quic/crypto/chacha20_poly1305_encrypter_nss.cc",
211       "quic/crypto/channel_id_nss.cc",
212       "quic/crypto/p256_key_exchange_nss.cc",
213       "socket/nss_ssl_util.cc",
214       "socket/nss_ssl_util.h",
215       "socket/ssl_client_socket_nss.cc",
216       "socket/ssl_client_socket_nss.h",
217       "socket/ssl_server_socket_nss.cc",
218       "socket/ssl_server_socket_nss.h",
219     ]
220     if (is_chromeos) {
221       sources -= [
222         "cert/nss_cert_database_chromeos.cc",
223         "cert/nss_cert_database_chromeos.h",
224         "cert/nss_profile_filter_chromeos.cc",
225         "cert/nss_profile_filter_chromeos.h",
226       ]
227     }
228     if (is_linux) {
229       # These are always removed for non-Linux cases below.
230       sources -= [
231         "base/crypto_module_nss.cc",
232         "base/keygen_handler_nss.cc",
233         "cert/cert_database_nss.cc",
234         "cert/nss_cert_database.cc",
235         "cert/nss_cert_database.h",
236         "cert/x509_certificate_nss.cc",
237         "third_party/mozilla_security_manager/nsKeygenHandler.cpp",
238         "third_party/mozilla_security_manager/nsKeygenHandler.h",
239         "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
240         "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
241         "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
242         "third_party/mozilla_security_manager/nsPKCS12Blob.h",
243       ]
244     }
245     if (is_ios) {
246       # Always removed for !ios below.
247       sources -= [
248         "cert/cert_verify_proc_nss.cc",
249         "cert/cert_verify_proc_nss.h",
250       ]
251     }
252     if (is_win) {
253       sources -= [ "cert/sha256_legacy_support_nss_win.cc" ]
254     }
255   } else {
256     sources -= [
257       "base/crypto_module_openssl.cc",
258       "cert/ct_log_verifier_openssl.cc",
259       "cert/ct_objects_extractor_openssl.cc",
260       "cert/jwk_serializer_openssl.cc",
261       "cert/x509_util_openssl.cc",
262       "cert/x509_util_openssl.h",
263       "quic/crypto/aead_base_decrypter_openssl.cc",
264       "quic/crypto/aead_base_encrypter_openssl.cc",
265       "quic/crypto/aes_128_gcm_12_decrypter_openssl.cc",
266       "quic/crypto/aes_128_gcm_12_encrypter_openssl.cc",
267       "quic/crypto/chacha20_poly1305_decrypter_openssl.cc",
268       "quic/crypto/chacha20_poly1305_encrypter_openssl.cc",
269       "quic/crypto/channel_id_openssl.cc",
270       "quic/crypto/p256_key_exchange_openssl.cc",
271       "quic/crypto/scoped_evp_aead_ctx.cc",
272       "quic/crypto/scoped_evp_aead_ctx.h",
273       "socket/ssl_client_socket_openssl.cc",
274       "socket/ssl_client_socket_openssl.h",
275       "socket/ssl_server_socket_openssl.cc",
276       "socket/ssl_server_socket_openssl.h",
277       "socket/ssl_session_cache_openssl.cc",
278       "socket/ssl_session_cache_openssl.h",
279       "ssl/openssl_platform_key.h",
280       "ssl/openssl_ssl_util.cc",
281       "ssl/openssl_ssl_util.h",
282     ]
283     if (is_mac) {
284       sources -= [ "ssl/openssl_platform_key_mac.cc" ]
285     }
286     if (is_win) {
287       sources -= [
288         "cert/sha256_legacy_support_openssl_win.cc",
289         "ssl/openssl_platform_key_win.cc",
290       ]
291     }
292   }
294   if (!use_openssl_certs) {
295     sources -= [
296       "base/keygen_handler_openssl.cc",
297       "base/openssl_private_key_store.h",
298       "base/openssl_private_key_store_memory.cc",
299       "cert/cert_database_openssl.cc",
300       "cert/cert_verify_proc_openssl.cc",
301       "cert/cert_verify_proc_openssl.h",
302       "cert/test_root_certs_openssl.cc",
303       "cert/x509_certificate_openssl.cc",
304       "ssl/openssl_client_key_store.cc",
305       "ssl/openssl_client_key_store.h",
306     ]
307     if (is_android) {
308       sources -= [ "base/openssl_private_key_store_android.cc" ]
309     }
310   } else if (is_android) {
311     # Android doesn't use these even when using OpenSSL.
312     sources -= [
313       "base/openssl_private_key_store_memory.cc",
314       "cert/cert_database_openssl.cc",
315       "cert/cert_verify_proc_openssl.cc",
316       "cert/test_root_certs_openssl.cc",
317     ]
318   }
320   if (use_glib && !is_chromeos) {
321     configs += [ "//build/config/linux:gconf" ]
322     deps += [ "//build/config/linux:gio" ]
323   }
325   if (is_linux) {
326     configs += [ "//build/config/linux:libresolv" ]
327   } else {
328     sources -= [
329       "base/crypto_module_nss.cc",
330       "base/keygen_handler_nss.cc",
331       "cert/cert_database_nss.cc",
332       "cert/nss_cert_database.cc",
333       "cert/nss_cert_database.h",
334       "cert/x509_certificate_nss.cc",
335       "third_party/mozilla_security_manager/nsKeygenHandler.cpp",
336       "third_party/mozilla_security_manager/nsKeygenHandler.h",
337       "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
338       "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
339       "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
340       "third_party/mozilla_security_manager/nsPKCS12Blob.h",
341     ]
343     if (!is_ios && !use_openssl) {
344       # These files are part of the partial implementation of NSS on iOS so
345       # keep them in that case.
346       sources -= [
347         "cert/test_root_certs_nss.cc",
348         "ocsp/nss_ocsp.cc",
349         "ocsp/nss_ocsp.h",
350       ]
351     }
352   }
354   if (!use_nss_certs) {
355     sources -= [
356       "ssl/client_cert_store_nss.cc",
357       "ssl/client_cert_store_nss.h",
358     ]
359     if (!is_ios) {
360       # These files are part of the partial implementation of NSS on iOS so
361       # keep them in that case (even though use_nss_certs is not set).
362       sources -= [
363         "cert/cert_verify_proc_nss.cc",
364         "cert/cert_verify_proc_nss.h",
365       ]
366     }
367     if (is_chromeos) {
368       # These were already removed on non-ChromeOS.
369       sources -= [
370         "ssl/client_cert_store_chromeos.cc",
371         "ssl/client_cert_store_chromeos.h",
372       ]
373     }
374   }
376   if (!enable_websockets) {
377     sources -= [
378       "websockets/websocket_basic_handshake_stream.cc",
379       "websockets/websocket_basic_handshake_stream.h",
380       "websockets/websocket_basic_stream.cc",
381       "websockets/websocket_basic_stream.h",
382       "websockets/websocket_channel.cc",
383       "websockets/websocket_channel.h",
384       "websockets/websocket_deflate_predictor.h",
385       "websockets/websocket_deflate_predictor_impl.cc",
386       "websockets/websocket_deflate_predictor_impl.h",
387       "websockets/websocket_deflate_stream.cc",
388       "websockets/websocket_deflate_stream.h",
389       "websockets/websocket_deflater.cc",
390       "websockets/websocket_deflater.h",
391       "websockets/websocket_errors.cc",
392       "websockets/websocket_errors.h",
393       "websockets/websocket_extension.cc",
394       "websockets/websocket_extension.h",
395       "websockets/websocket_extension_parser.cc",
396       "websockets/websocket_extension_parser.h",
397       "websockets/websocket_frame.cc",
398       "websockets/websocket_frame.h",
399       "websockets/websocket_frame_parser.cc",
400       "websockets/websocket_frame_parser.h",
401       "websockets/websocket_handshake_challenge.cc",
402       "websockets/websocket_handshake_challenge.h",
403       "websockets/websocket_handshake_constants.cc",
404       "websockets/websocket_handshake_constants.h",
405       "websockets/websocket_handshake_request_info.cc",
406       "websockets/websocket_handshake_request_info.h",
407       "websockets/websocket_handshake_response_info.cc",
408       "websockets/websocket_handshake_response_info.h",
409       "websockets/websocket_handshake_stream_base.h",
410       "websockets/websocket_handshake_stream_create_helper.cc",
411       "websockets/websocket_handshake_stream_create_helper.h",
412       "websockets/websocket_inflater.cc",
413       "websockets/websocket_inflater.h",
414       "websockets/websocket_mux.h",
415       "websockets/websocket_stream.cc",
416       "websockets/websocket_stream.h",
417     ]
418   }
420   if (!enable_mdns) {
421     sources -= [
422       "dns/mdns_cache.cc",
423       "dns/mdns_cache.h",
424       "dns/mdns_client.cc",
425       "dns/mdns_client.h",
426       "dns/mdns_client_impl.cc",
427       "dns/mdns_client_impl.h",
428       "dns/record_parsed.cc",
429       "dns/record_parsed.h",
430       "dns/record_rdata.cc",
431       "dns/record_rdata.h",
432     ]
433   }
435   if (is_win) {
436     sources -= [
437       "http/http_auth_handler_ntlm_portable.cc",
438       "socket/socket_libevent.cc",
439       "socket/socket_libevent.h",
440       "socket/tcp_socket_libevent.cc",
441       "socket/tcp_socket_libevent.h",
442       "udp/udp_socket_libevent.cc",
443       "udp/udp_socket_libevent.h",
444     ]
445   } else {  # !is_win
446     sources -= [
447       "base/winsock_init.cc",
448       "base/winsock_init.h",
449       "base/winsock_util.cc",
450       "base/winsock_util.h",
451       "proxy/proxy_resolver_winhttp.cc",
452       "proxy/proxy_resolver_winhttp.h",
453     ]
454   }
456   if (is_mac) {
457     libs = [
458       "Foundation.framework",
459       "Security.framework",
460       "SystemConfiguration.framework",
461       "resolv",
462     ]
463   }
465   if (is_ios) {
466     # Add back some sources that were otherwise filtered out. iOS additionally
467     # doesn't set USE_NSS but needs some of the files.
468     set_sources_assignment_filter([])
469     sources += [
470       "base/net_util_mac.cc",
471       "base/net_util_mac.h",
472       "base/network_change_notifier_mac.cc",
473       "base/network_config_watcher_mac.cc",
474       "base/platform_mime_util_mac.mm",
475       "cert/cert_verify_proc_nss.cc",
476       "cert/cert_verify_proc_nss.h",
477       "cert/test_root_certs_nss.cc",
478       "cert/x509_util_nss.cc",
479       "cert/x509_util_nss.h",
480       "ocsp/nss_ocsp.cc",
481       "ocsp/nss_ocsp.h",
482       "proxy/proxy_resolver_mac.cc",
483       "proxy/proxy_server_mac.cc",
484     ]
485     set_sources_assignment_filter(sources_assignment_filter)
487     sources -= [ "disk_cache/blockfile/file_posix.cc" ]
488     libs = [
489       "CFNetwork.framework",
490       "MobileCoreServices.framework",
491       "Security.framework",
492       "SystemConfiguration.framework",
493       "resolv",
494     ]
495   }
497   if (is_ios || is_mac) {
498     sources += gypi_values.net_base_mac_ios_sources
499   }
501   if (is_android) {
502     # Add some Linux sources that were excluded by the filter, but which
503     # are needed.
504     set_sources_assignment_filter([])
505     sources += [
506       "base/address_tracker_linux.cc",
507       "base/address_tracker_linux.h",
508       "base/net_util_linux.cc",
509       "base/net_util_linux.h",
510       "base/platform_mime_util_linux.cc",
511     ]
512     set_sources_assignment_filter(sources_assignment_filter)
514     if (!is_android_webview_build) {
515       deps += [ ":net_jni_headers" ]
516     }
517   }
519   if (use_icu_alternatives_on_android) {
520     deps -= [
521       "//base:i18n",
522       "//third_party/icu",
523     ]
524     sources -= [
525       "base/filename_util_icu.cc",
526       "base/net_string_util_icu.cc",
527       "base/net_util_icu.cc",
528     ]
529     sources += [
530       "base/net_string_util_icu_alternatives_android.cc",
531       "base/net_string_util_icu_alternatives_android.h",
532     ]
533   }
536 grit("net_resources") {
537   source = "base/net_resources.grd"
538   use_qualified_include = true
539   outputs = [
540     "grit/net_resources.h",
541     "net_resources.pak",
542     "net_resources.rc",
543   ]
546 static_library("extras") {
547   sources = gypi_values.net_extras_sources
548   configs += [ "//build/config/compiler:wexit_time_destructors" ]
549   deps = [
550     ":net",
551     "//sql:sql",
552   ]
555 static_library("http_server") {
556   sources = [
557     "server/http_connection.cc",
558     "server/http_connection.h",
559     "server/http_server.cc",
560     "server/http_server.h",
561     "server/http_server_request_info.cc",
562     "server/http_server_request_info.h",
563     "server/http_server_response_info.cc",
564     "server/http_server_response_info.h",
565     "server/web_socket.cc",
566     "server/web_socket.h",
567     "server/web_socket_encoder.cc",
568     "server/web_socket_encoder.h",
569   ]
570   configs += [
571     "//build/config/compiler:wexit_time_destructors",
572     ":net_win_size_truncation",
573   ]
574   deps = [
575     ":net",
576     "//base",
577   ]
580 executable("dump_cache") {
581   testonly = true
582   sources = [
583     "tools/dump_cache/cache_dumper.cc",
584     "tools/dump_cache/cache_dumper.h",
585     "tools/dump_cache/dump_cache.cc",
586     "tools/dump_cache/dump_files.cc",
587     "tools/dump_cache/dump_files.h",
588     "tools/dump_cache/simple_cache_dumper.cc",
589     "tools/dump_cache/simple_cache_dumper.h",
590     "tools/dump_cache/url_to_filename_encoder.cc",
591     "tools/dump_cache/url_to_filename_encoder.h",
592     "tools/dump_cache/url_utilities.cc",
593     "tools/dump_cache/url_utilities.h",
594   ]
596   configs += [ ":net_win_size_truncation" ]
598   deps = [
599     "//base",
600     ":net",
601     ":test_support",
602   ]
605 source_set("test_support") {
606   testonly = true
607   sources = [
608     "base/captured_net_log_entry.cc",
609     "base/captured_net_log_entry.h",
610     "base/capturing_net_log.cc",
611     "base/capturing_net_log.h",
612     "base/capturing_net_log_observer.cc",
613     "base/capturing_net_log_observer.h",
614     "base/load_timing_info_test_util.cc",
615     "base/load_timing_info_test_util.h",
616     "base/mock_file_stream.cc",
617     "base/mock_file_stream.h",
618     "base/test_completion_callback.cc",
619     "base/test_completion_callback.h",
620     "base/test_data_directory.cc",
621     "base/test_data_directory.h",
622     "cert/mock_cert_verifier.cc",
623     "cert/mock_cert_verifier.h",
624     "cookies/cookie_monster_store_test.cc",
625     "cookies/cookie_monster_store_test.h",
626     "cookies/cookie_store_test_callbacks.cc",
627     "cookies/cookie_store_test_callbacks.h",
628     "cookies/cookie_store_test_helpers.cc",
629     "cookies/cookie_store_test_helpers.h",
630     "disk_cache/disk_cache_test_base.cc",
631     "disk_cache/disk_cache_test_base.h",
632     "disk_cache/disk_cache_test_util.cc",
633     "disk_cache/disk_cache_test_util.h",
634     "dns/dns_test_util.cc",
635     "dns/dns_test_util.h",
636     "dns/mock_host_resolver.cc",
637     "dns/mock_host_resolver.h",
638     "dns/mock_mdns_socket_factory.cc",
639     "dns/mock_mdns_socket_factory.h",
640     "http/http_transaction_test_util.cc",
641     "http/http_transaction_test_util.h",
642     "proxy/mock_proxy_resolver.cc",
643     "proxy/mock_proxy_resolver.h",
644     "proxy/mock_proxy_script_fetcher.cc",
645     "proxy/mock_proxy_script_fetcher.h",
646     "proxy/proxy_config_service_common_unittest.cc",
647     "proxy/proxy_config_service_common_unittest.h",
648     "socket/socket_test_util.cc",
649     "socket/socket_test_util.h",
650     "test/cert_test_util.cc",
651     "test/cert_test_util.h",
652     "test/cert_test_util_nss.cc",
653     "test/ct_test_util.cc",
654     "test/ct_test_util.h",
655     "test/embedded_test_server/embedded_test_server.cc",
656     "test/embedded_test_server/embedded_test_server.h",
657     "test/embedded_test_server/http_connection.cc",
658     "test/embedded_test_server/http_connection.h",
659     "test/embedded_test_server/http_request.cc",
660     "test/embedded_test_server/http_request.h",
661     "test/embedded_test_server/http_response.cc",
662     "test/embedded_test_server/http_response.h",
663     "test/net_test_suite.cc",
664     "test/net_test_suite.h",
665     "test/python_utils.cc",
666     "test/python_utils.h",
667     "test/spawned_test_server/base_test_server.cc",
668     "test/spawned_test_server/base_test_server.h",
669     "test/spawned_test_server/local_test_server.cc",
670     "test/spawned_test_server/local_test_server.h",
671     "test/spawned_test_server/local_test_server_posix.cc",
672     "test/spawned_test_server/local_test_server_win.cc",
673     "test/spawned_test_server/remote_test_server.cc",
674     "test/spawned_test_server/remote_test_server.h",
675     "test/spawned_test_server/spawned_test_server.h",
676     "test/spawned_test_server/spawner_communicator.cc",
677     "test/spawned_test_server/spawner_communicator.h",
678     "test/url_request/url_request_failed_job.cc",
679     "test/url_request/url_request_failed_job.h",
680     "test/url_request/url_request_mock_data_job.cc",
681     "test/url_request/url_request_mock_data_job.h",
682     "test/url_request/url_request_mock_http_job.cc",
683     "test/url_request/url_request_mock_http_job.h",
684     "test/url_request/url_request_slow_download_job.cc",
685     "test/url_request/url_request_slow_download_job.h",
686     "url_request/test_url_fetcher_factory.cc",
687     "url_request/test_url_fetcher_factory.h",
688     "url_request/test_url_request_interceptor.cc",
689     "url_request/test_url_request_interceptor.h",
690     "url_request/url_request_test_util.cc",
691     "url_request/url_request_test_util.h",
692   ]
694   configs += [ ":net_win_size_truncation" ]
696   public_deps = [
697     "//base",
698     "//base/test:test_support",
699     "//crypto",
700     "//net",
701     "//net/tools/tld_cleanup",
702     "//testing/gmock",
703     "//testing/gtest",
704     "//url",
705   ]
707   if (!use_openssl && (use_nss_certs || is_ios)) {
708     public_deps += [ "//crypto:platform" ]
709   }
711   if (!is_android) {
712     sources -= [
713       "test/spawned_test_server/remote_test_server.cc",
714       "test/spawned_test_server/remote_test_server.h",
715       "test/spawned_test_server/spawner_communicator.cc",
716       "test/spawned_test_server/spawner_communicator.h",
717     ]
718   }
720   if (use_v8_in_net) {
721     public_deps += [ ":net_with_v8" ]
722   }
724   if (!enable_mdns) {
725     sources -= [
726       "dns/mock_mdns_socket_factory.cc",
727       "dns/mock_mdns_socket_factory.h",
728     ]
729   }
731   if (!use_nss_certs) {
732     sources -= [ "test/cert_test_util_nss.cc" ]
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_utils.cc",
755     "tools/quic/spdy_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_service_v8.cc",
772       "proxy/proxy_service_v8.h",
773     ]
775     defines = [ "NET_IMPLEMENTATION" ]
776     configs += [
777       ":net_win_size_truncation",
778       "//build/config/compiler:wexit_time_destructors",
779     ]
781     public_deps = [
782       ":net",
783     ]
784     deps = [
785       "//base",
786       "//gin",
787       "//url",
788       "//v8",
789     ]
790   }
793 if (use_v8_in_net && !is_android) {
794   source_set("net_browser_services") {
795     sources = [
796       "dns/mojo_host_resolver_impl.cc",
797       "dns/mojo_host_resolver_impl.h",
798     ]
800     public_deps = [
801       ":mojo_type_converters",
802       ":net",
803       "//net/interfaces",
804       "//third_party/mojo/src/mojo/public/cpp/bindings",
805     ]
806   }
808   source_set("mojo_type_converters") {
809     sources = [
810       "dns/mojo_type_converters.cc",
811       "dns/mojo_type_converters.h",
812     ]
814     public_deps = [
815       ":net",
816       "//net/interfaces",
817       "//third_party/mojo/src/mojo/public/cpp/bindings",
818     ]
819   }
822 if (!is_ios && !is_android) {
823   executable("crash_cache") {
824     testonly = true
825     sources = [
826       "tools/crash_cache/crash_cache.cc",
827     ]
828     configs += [ ":net_win_size_truncation" ]
829     deps = [
830       ":net",
831       ":test_support",
832       "//base",
833     ]
834   }
836   executable("crl_set_dump") {
837     testonly = true
838     sources = [
839       "tools/crl_set_dump/crl_set_dump.cc",
840     ]
841     configs += [ ":net_win_size_truncation" ]
842     deps = [
843       ":net",
844       "//base",
845     ]
846   }
848   executable("dns_fuzz_stub") {
849     testonly = true
850     sources = [
851       "tools/dns_fuzz_stub/dns_fuzz_stub.cc",
852     ]
853     configs += [ ":net_win_size_truncation" ]
854     deps = [
855       ":net",
856       "//base",
857     ]
858   }
860   executable("gdig") {
861     testonly = true
862     sources = [
863       "tools/gdig/file_net_log.cc",
864       "tools/gdig/gdig.cc",
865     ]
866     deps = [
867       ":net",
868       "//base",
869     ]
870   }
872   executable("get_server_time") {
873     testonly = true
874     sources = [
875       "tools/get_server_time/get_server_time.cc",
876     ]
877     configs += [ ":net_win_size_truncation" ]
878     deps = [
879       ":net",
880       "//base",
881       "//base:i18n",
882       "//url",
883     ]
884   }
886   if (use_v8_in_net) {
887     executable("net_watcher") {
888       testonly = true
889       sources = [
890         "tools/net_watcher/net_watcher.cc",
891       ]
892       deps = [
893         ":net",
894         ":net_with_v8",
895         "//base",
896       ]
898       if (is_desktop_linux) {
899         configs += [
900           "//build/config/linux:gconf",
901           "//build/config/linux:glib",
902         ]
903         deps += [ "//build/config/linux:gio" ]
904       }
905     }
906   }
908   executable("run_testserver") {
909     testonly = true
910     sources = [
911       "tools/testserver/run_testserver.cc",
912     ]
913     deps = [
914       ":net",  # TODO(brettw) bug 363749: this shouldn't be necessary. It's not
915                # in the GYP build, and can be removed when the bug is fixed.
916       ":test_support",
917       "//base",
918       "//base/test:test_support",
919       "//testing/gtest",
920     ]
921   }
923   executable("stress_cache") {
924     testonly = true
925     sources = [
926       "disk_cache/blockfile/stress_cache.cc",
927     ]
928     configs += [ ":net_win_size_truncation" ]
929     deps = [
930       ":net",
931       ":test_support",
932       "//base",
933     ]
934   }
936   executable("tld_cleanup") {
937     sources = [
938       "tools/tld_cleanup/tld_cleanup.cc",
939     ]
940     configs += [ ":net_win_size_truncation" ]
941     deps = [
942       "//base",
943       "//base:i18n",
944       "//net/tools/tld_cleanup",
945     ]
946   }
949 if (is_linux) {
950   static_library("epoll_server") {
951     sources = [
952       "tools/epoll_server/epoll_server.cc",
953       "tools/epoll_server/epoll_server.h",
954     ]
955     deps = [
956       ":net",
957       "//base",
958     ]
959   }
961   static_library("flip_in_mem_edsm_server_base") {
962     testonly = true
963     sources = [
964       "tools/dump_cache/url_to_filename_encoder.cc",
965       "tools/dump_cache/url_to_filename_encoder.h",
966       "tools/dump_cache/url_utilities.cc",
967       "tools/dump_cache/url_utilities.h",
968       "tools/flip_server/acceptor_thread.cc",
969       "tools/flip_server/acceptor_thread.h",
970       "tools/flip_server/constants.h",
971       "tools/flip_server/create_listener.cc",
972       "tools/flip_server/create_listener.h",
973       "tools/flip_server/flip_config.cc",
974       "tools/flip_server/flip_config.h",
975       "tools/flip_server/http_interface.cc",
976       "tools/flip_server/http_interface.h",
977       "tools/flip_server/loadtime_measurement.h",
978       "tools/flip_server/mem_cache.cc",
979       "tools/flip_server/mem_cache.h",
980       "tools/flip_server/output_ordering.cc",
981       "tools/flip_server/output_ordering.h",
982       "tools/flip_server/ring_buffer.cc",
983       "tools/flip_server/ring_buffer.h",
984       "tools/flip_server/sm_connection.cc",
985       "tools/flip_server/sm_connection.h",
986       "tools/flip_server/sm_interface.h",
987       "tools/flip_server/spdy_interface.cc",
988       "tools/flip_server/spdy_interface.h",
989       "tools/flip_server/spdy_ssl.cc",
990       "tools/flip_server/spdy_ssl.h",
991       "tools/flip_server/spdy_util.cc",
992       "tools/flip_server/spdy_util.h",
993       "tools/flip_server/streamer_interface.cc",
994       "tools/flip_server/streamer_interface.h",
995     ]
996     deps = [
997       ":balsa",
998       ":epoll_server",
999       ":net",
1000       "//base",
1001       "//third_party/boringssl",
1002     ]
1003   }
1005   executable("flip_in_mem_edsm_server_unittests") {
1006     testonly = true
1007     sources = [
1008       "tools/flip_server/flip_test_utils.cc",
1009       "tools/flip_server/flip_test_utils.h",
1010       "tools/flip_server/http_interface_test.cc",
1011       "tools/flip_server/mem_cache_test.cc",
1012       "tools/flip_server/run_all_tests.cc",
1013       "tools/flip_server/spdy_interface_test.cc",
1014     ]
1015     deps = [
1016       ":flip_in_mem_edsm_server_base",
1017       ":net",
1018       ":test_support",
1019       "//testing/gtest",
1020       "//testing/gmock",
1021       "//third_party/boringssl",
1022     ]
1023   }
1025   executable("flip_in_mem_edsm_server") {
1026     testonly = true
1027     sources = [
1028       "tools/flip_server/flip_in_mem_edsm_server.cc",
1029     ]
1030     deps = [
1031       ":flip_in_mem_edsm_server_base",
1032       ":net",
1033       "//base",
1034     ]
1035   }
1037   source_set("quic_base") {
1038     sources = [
1039       "tools/quic/quic_client.cc",
1040       "tools/quic/quic_client.h",
1041       "tools/quic/quic_client_session.cc",
1042       "tools/quic/quic_client_session.h",
1043       "tools/quic/quic_default_packet_writer.cc",
1044       "tools/quic/quic_default_packet_writer.h",
1045       "tools/quic/quic_dispatcher.cc",
1046       "tools/quic/quic_dispatcher.h",
1047       "tools/quic/quic_epoll_clock.cc",
1048       "tools/quic/quic_epoll_clock.h",
1049       "tools/quic/quic_epoll_connection_helper.cc",
1050       "tools/quic/quic_epoll_connection_helper.h",
1051       "tools/quic/quic_in_memory_cache.cc",
1052       "tools/quic/quic_in_memory_cache.h",
1053       "tools/quic/quic_packet_writer_wrapper.cc",
1054       "tools/quic/quic_packet_writer_wrapper.h",
1055       "tools/quic/quic_per_connection_packet_writer.cc",
1056       "tools/quic/quic_per_connection_packet_writer.h",
1057       "tools/quic/quic_server.cc",
1058       "tools/quic/quic_server.h",
1059       "tools/quic/quic_server_session.cc",
1060       "tools/quic/quic_server_session.h",
1061       "tools/quic/quic_socket_utils.cc",
1062       "tools/quic/quic_socket_utils.h",
1063       "tools/quic/quic_spdy_client_stream.cc",
1064       "tools/quic/quic_spdy_client_stream.h",
1065       "tools/quic/quic_spdy_server_stream.cc",
1066       "tools/quic/quic_spdy_server_stream.h",
1067       "tools/quic/quic_time_wait_list_manager.cc",
1068       "tools/quic/quic_time_wait_list_manager.h",
1069     ]
1070     deps = [
1071       ":balsa",
1072       ":epoll_server",
1073       ":net",
1074       "//base",
1075       "//base/third_party/dynamic_annotations",
1076       "//crypto",
1077       "//third_party/boringssl",
1078       "//url",
1079     ]
1080   }
1082   executable("quic_client") {
1083     sources = [
1084       "tools/quic/quic_client_bin.cc",
1085     ]
1086     deps = [
1087       ":quic_base",
1088       ":net",
1089       "//base",
1090       "//third_party/boringssl",
1091     ]
1092   }
1095 if (is_android) {
1096   generate_jni("net_jni_headers") {
1097     sources = [
1098       "android/java/src/org/chromium/net/AndroidCertVerifyResult.java",
1099       "android/java/src/org/chromium/net/AndroidKeyStore.java",
1100       "android/java/src/org/chromium/net/AndroidNetworkLibrary.java",
1101       "android/java/src/org/chromium/net/AndroidPrivateKey.java",
1102       "android/java/src/org/chromium/net/GURLUtils.java",
1103       "android/java/src/org/chromium/net/NetworkChangeNotifier.java",
1104       "android/java/src/org/chromium/net/ProxyChangeListener.java",
1105       "android/java/src/org/chromium/net/X509Util.java",
1106     ]
1107     jni_package = "net"
1108   }
1109   generate_jni("net_test_jni_headers") {
1110     sources = [
1111       "android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java",
1112     ]
1113     jni_package = "net"
1114   }
1117 if (is_android || is_linux) {
1118   executable("disk_cache_memory_test") {
1119     testonly = true
1120     sources = [
1121       "tools/disk_cache_memory_test/disk_cache_memory_test.cc",
1122     ]
1123     deps = [
1124       ":net",
1125       "//base",
1126     ]
1127   }
1130 # TODO(GYP) make this compile on Android, we need some native test deps done.
1131 # TODO(GYP) Also doesn't work on Windows; dependency on boringssl is wrong.
1132 # TODO(GYP) Also doesn't work on Mac, need to figure out why not.
1133 if (!is_android && !is_win && !is_mac) {
1134   source_set("quic_tools") {
1135     sources = [
1136       "quic/quic_dispatcher.cc",
1137       "quic/quic_dispatcher.h",
1138       "quic/quic_in_memory_cache.cc",
1139       "quic/quic_in_memory_cache.h",
1140       "quic/quic_per_connection_packet_writer.cc",
1141       "quic/quic_per_connection_packet_writer.h",
1142       "quic/quic_server.cc",
1143       "quic/quic_server.h",
1144       "quic/quic_server_packet_writer.cc",
1145       "quic/quic_server_packet_writer.h",
1146       "quic/quic_server_session.cc",
1147       "quic/quic_server_session.h",
1148       "quic/quic_spdy_server_stream.cc",
1149       "quic/quic_spdy_server_stream.h",
1150       "quic/quic_time_wait_list_manager.cc",
1151       "quic/quic_time_wait_list_manager.h",
1152     ]
1153     deps = [
1154       ":net",
1155       "//base",
1156       "//base/third_party/dynamic_annotations",
1157       "//url",
1158     ]
1159   }
1161   test("net_unittests") {
1162     sources = gypi_values.net_test_sources
1164     configs += [ ":net_win_size_truncation" ]
1165     defines = []
1167     deps = [
1168       ":extras",
1169       ":http_server",
1170       ":net",
1171       ":quic_tools",
1172       ":test_support",
1173       "//base",
1174       "//base:i18n",
1175       "//base:prefs_test_support",
1176       "//base/allocator",
1177       "//base/third_party/dynamic_annotations",
1178       "//crypto",
1179       "//crypto:platform",
1180       "//crypto:test_support",
1181       "//net/base/registry_controlled_domains",
1182       "//testing/gmock",
1183       "//testing/gtest",
1184       "//third_party/zlib",
1185       "//url",
1186     ]
1188     if (is_linux) {
1189       sources += gypi_values.net_linux_test_sources
1190       deps += [
1191         ":balsa",
1192         ":epoll_server",
1193         ":flip_in_mem_edsm_server_base",
1194         ":quic_base",
1195       ]
1196     }
1198     if (is_mac || is_ios) {
1199       sources += gypi_values.net_base_test_mac_ios_sources
1200     }
1202     if (is_chromeos) {
1203       sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ]
1204     }
1206     if (is_android) {
1207       sources -= [
1208         # See bug http://crbug.com/344533.
1209         "disk_cache/blockfile/index_table_v3_unittest.cc",
1211         # No res_ninit() et al on Android, so this doesn't make a lot of
1212         # sense.
1213         "dns/dns_config_service_posix_unittest.cc",
1214       ]
1215       deps += [
1216         ":net_javatests",  # FIXME(brettw)
1217         ":net_test_jni_headers",
1218       ]
1219     }
1221     if (v8_use_external_startup_data) {
1222       deps += [ "//gin" ]
1223     }
1225     if (!use_nss_certs) {
1226       sources -= [ "ssl/client_cert_store_nss_unittest.cc" ]
1227       if (is_chromeos) {  # Already removed for all non-ChromeOS builds.
1228         sources -= [ "ssl/client_cert_store_chromeos_unittest.cc" ]
1229       }
1230     }
1232     if (use_openssl) {
1233       # When building for OpenSSL, we need to exclude NSS specific tests
1234       # or functionality not supported by OpenSSL yet.
1235       # TODO(bulach): Add equivalent tests when the underlying
1236       #               functionality is ported to OpenSSL.
1237       sources -= [
1238         "cert/nss_cert_database_unittest.cc",
1239         "cert/x509_util_nss_unittest.cc",
1240         "quic/test_tools/crypto_test_utils_nss.cc",
1241       ]
1242       if (is_chromeos) {
1243         # These were already removed in the non-ChromeOS case.
1244         sources -= [
1245           "cert/nss_cert_database_chromeos_unittest.cc",
1246           "cert/nss_profile_filter_chromeos_unittest.cc",
1247         ]
1248       }
1249     } else {
1250       sources -= [
1251         "cert/x509_util_openssl_unittest.cc",
1252         "quic/test_tools/crypto_test_utils_openssl.cc",
1253         "socket/ssl_client_socket_openssl_unittest.cc",
1254         "socket/ssl_session_cache_openssl_unittest.cc",
1255       ]
1256       if (!is_desktop_linux && !is_chromeos) {
1257         sources -= [ "cert/nss_cert_database_unittest.cc" ]
1258       }
1259     }
1261     if (use_kerberos) {
1262       defines += [ "USE_KERBEROS" ]
1263     } else {
1264       sources -= [
1265         "http/http_auth_gssapi_posix_unittest.cc",
1266         "http/http_auth_handler_negotiate_unittest.cc",
1267         "http/mock_gssapi_library_posix.cc",
1268         "http/mock_gssapi_library_posix.h",
1269       ]
1270     }
1272     if (use_openssl || (!is_desktop_linux && !is_chromeos && !is_ios)) {
1273       # Only include this test when on Posix and using NSS for
1274       # cert verification or on iOS (which also uses NSS for certs).
1275       sources -= [ "ocsp/nss_ocsp_unittest.cc" ]
1276     }
1278     if (!use_openssl_certs) {
1279       sources -= [ "ssl/openssl_client_key_store_unittest.cc" ]
1280     }
1282     if (!enable_websockets) {
1283       sources -= [
1284         "server/http_connection_unittest.cc",
1285         "server/http_server_response_info_unittest.cc",
1286         "server/http_server_unittest.cc",
1287         "server/web_socket_encoder_unittest.cc",
1288         "websockets/websocket_basic_stream_test.cc",
1289         "websockets/websocket_channel_test.cc",
1290         "websockets/websocket_deflate_predictor_impl_test.cc",
1291         "websockets/websocket_deflate_stream_test.cc",
1292         "websockets/websocket_deflater_test.cc",
1293         "websockets/websocket_end_to_end_test.cc",
1294         "websockets/websocket_errors_test.cc",
1295         "websockets/websocket_extension_parser_test.cc",
1296         "websockets/websocket_frame_parser_test.cc",
1297         "websockets/websocket_frame_test.cc",
1298         "websockets/websocket_handshake_challenge_test.cc",
1299         "websockets/websocket_handshake_stream_create_helper_test.cc",
1300         "websockets/websocket_inflater_test.cc",
1301         "websockets/websocket_stream_test.cc",
1302         "websockets/websocket_test_util.cc",
1303         "websockets/websocket_test_util.h",
1304       ]
1305       deps -= [ ":http_server" ]
1306     }
1308     if (disable_file_support) {
1309       sources -= [
1310         "base/directory_lister_unittest.cc",
1311         "url_request/url_request_file_job_unittest.cc",
1312       ]
1313     }
1315     if (disable_ftp_support) {
1316       sources -= [
1317         "ftp/ftp_auth_cache_unittest.cc",
1318         "ftp/ftp_ctrl_response_buffer_unittest.cc",
1319         "ftp/ftp_directory_listing_parser_ls_unittest.cc",
1320         "ftp/ftp_directory_listing_parser_netware_unittest.cc",
1321         "ftp/ftp_directory_listing_parser_os2_unittest.cc",
1322         "ftp/ftp_directory_listing_parser_unittest.cc",
1323         "ftp/ftp_directory_listing_parser_unittest.h",
1324         "ftp/ftp_directory_listing_parser_vms_unittest.cc",
1325         "ftp/ftp_directory_listing_parser_windows_unittest.cc",
1326         "ftp/ftp_network_transaction_unittest.cc",
1327         "ftp/ftp_util_unittest.cc",
1328         "url_request/url_request_ftp_job_unittest.cc",
1329       ]
1330     }
1332     if (!enable_built_in_dns) {
1333       sources -= [
1334         "dns/address_sorter_posix_unittest.cc",
1335         "dns/address_sorter_unittest.cc",
1336       ]
1337     }
1339     # Always need use_v8_in_net to be 1 to run on Android, so just remove
1340     # net_unittest's dependency on v8 when using icu alternatives instead of
1341     # setting use_v8_in_net to 0.
1342     if (use_v8_in_net && !use_icu_alternatives_on_android) {
1343       deps += [ ":net_with_v8" ]
1344     } else {
1345       sources -= [
1346         "proxy/proxy_resolver_v8_tracing_unittest.cc",
1347         "proxy/proxy_resolver_v8_unittest.cc",
1348       ]
1349     }
1351     if (use_v8_in_net && !is_android) {
1352       deps += [
1353         ":net_browser_services",
1354         "//mojo/environment:chromium",
1355         "//third_party/mojo/src/mojo/edk/system",
1356       ]
1357     } else {
1358       sources -= [ "dns/mojo_host_resolver_impl_unittest.cc" ]
1359     }
1361     if (!enable_mdns) {
1362       sources -= [
1363         "dns/mdns_cache_unittest.cc",
1364         "dns/mdns_client_unittest.cc",
1365         "dns/record_parsed_unittest.cc",
1366         "dns/record_rdata_unittest.cc",
1367       ]
1368     }
1370     if (is_ios) {
1371       # TODO(GYP)
1372       #  'actions': [
1373       #    {
1374       #      'action_name': 'copy_test_data',
1375       #      'variables': {
1376       #        'test_data_files': [
1377       #          'data/ssl/certificates/',
1378       #          'data/test.html',
1379       #          'data/url_request_unittest/',
1380       #        ],
1381       #        'test_data_prefix': 'net',
1382       #      },
1383       #      'includes': [ '../build/copy_test_data_ios.gypi' ],
1384       #    },
1385       #  ],
1386       sources -= [
1387         # TODO(droger): The following tests are disabled because the
1388         # implementation is missing or incomplete.
1389         # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS.
1390         "base/keygen_handler_unittest.cc",
1391         "disk_cache/backend_unittest.cc",
1392         "disk_cache/blockfile/block_files_unittest.cc",
1394         # Need to read input data files.
1395         "filter/gzip_filter_unittest.cc",
1396         "socket/ssl_server_socket_unittest.cc",
1397         "spdy/fuzzing/hpack_fuzz_util_test.cc",
1399         # Need TestServer.
1400         "proxy/proxy_script_fetcher_impl_unittest.cc",
1401         "socket/ssl_client_socket_unittest.cc",
1402         "url_request/url_fetcher_impl_unittest.cc",
1403         "url_request/url_request_context_builder_unittest.cc",
1405         # Needs GetAppOutput().
1406         "test/python_utils_unittest.cc",
1408         # The following tests are disabled because they don't apply to
1409         # iOS.
1410         # OS is not "linux" or "freebsd" or "openbsd".
1411         "socket/unix_domain_client_socket_posix_unittest.cc",
1412         "socket/unix_domain_listen_socket_posix_unittest.cc",
1413         "socket/unix_domain_server_socket_posix_unittest.cc",
1415         # See bug http://crbug.com/344533.
1416         "disk_cache/blockfile/index_table_v3_unittest.cc",
1417       ]
1418     }
1420     if (is_android) {
1421       sources -= [ "dns/dns_config_service_posix_unittest.cc" ]
1423       # TODO(GYP)
1424       # # TODO(mmenke):  This depends on test_support_base, which depends on
1425       # #                icu.  Figure out a way to remove that dependency.
1426       # 'dependencies': [
1427       #   '../testing/android/native_test.gyp:native_test_native_code',
1428       # ]
1430       set_sources_assignment_filter([])
1431       sources += [ "base/address_tracker_linux_unittest.cc" ]
1432       set_sources_assignment_filter(sources_assignment_filter)
1433     }
1435     if (use_icu_alternatives_on_android) {
1436       sources -= [
1437         "base/filename_util_unittest.cc",
1438         "base/net_util_icu_unittest.cc",
1439       ]
1440       deps -= [ "//base:i18n" ]
1441     }
1442   }
1444   executable("quic_server") {
1445     sources = [
1446       "quic/quic_server_bin.cc",
1447     ]
1448     deps = [
1449       ":quic_tools",
1450       ":net",
1451       "//base",
1452       "//third_party/boringssl",
1453     ]
1454   }
1455 }  # !is_android && !is_win && !is_mac