mac: Don't limit GL_MAX_TEXTURE_SIZE on 10.9.0+.
[chromium-blink-merge.git] / net / BUILD.gn
blob2f0a6bc134d8eecc84575a3052130dc1b6bfab38
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("//url/config.gni")
10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni.
11 # Currently, that file can't be imported multiple times.  Make this always
12 # imported when http://crbug.com/393704 is fixed.
13 if (!is_android) {
14   import("//tools/grit/grit_rule.gni")
17 if (is_android) {
18   import("//build/config/android/config.gni")
19   import("//build/config/android/rules.gni")
20 } else if (is_mac) {
21   import("//build/config/mac/mac_sdk.gni")
24 # The list of net files is kept in net.gypi. Read it.
25 gypi_values = exec_script(
26     "//build/gypi_to_gn.py",
27     [ rebase_path("net.gypi") ],
28     "scope",
29     [ "net.gypi" ])
31 # Disable Kerberos on ChromeOS, Android and iOS, at least for now. It needs
32 # configuration (krb5.conf and so on).
33 use_kerberos = !is_chromeos && !is_android && !is_ios
35 # The way the cache uses mmap() is inefficient on some Android devices. If
36 # this flag is set, we hackily avoid using mmap() in the disk cache. We are
37 # pretty confident that mmap-ing the index would not hurt any existing x86
38 # android devices, but we cannot be so sure about the variety of ARM devices.
39 # So enable it for x86 only for now.
40 posix_avoid_mmap = is_android && cpu_arch != "x86"
42 # WebSockets and socket stream code are used everywhere except iOS.
43 enable_websockets = !is_ios
44 use_v8_in_net = !is_ios
45 enable_built_in_dns = !is_ios
46 disable_ftp_support = is_ios
48 declare_args() {
49   # Disables support for file URLs.  File URL support requires use of icu.
50   disable_file_support = false
53 config("net_config") {
54   defines = []
55   if (posix_avoid_mmap) {
56     defines += [ "POSIX_AVOID_MMAP" ]
57   }
58   if (disable_file_support) {
59     defines += [ "DISABLE_FILE_SUPPORT" ]
60   }
63 # Disables Windows warning about size to int truncations.
64 # TODO(jschuh): crbug.com/167187 fix this and delete this config.
65 config("net_win_size_truncation") {
66   if (is_win) {
67     cflags = [ "/wd4267" ]
68   }
71 component("net") {
72   sources =
73     gypi_values.net_nacl_common_sources +
74     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.h",
117       "http/http_auth_handler_negotiate.cc",
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/url_request_file_dir_job.cc",
134       "url_request/url_request_file_dir_job.h",
135       "url_request/url_request_file_job.cc",
136       "url_request/url_request_file_job.h",
137       "url_request/file_protocol_handler.cc",
138       "url_request/file_protocol_handler.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 -= [
254         "cert/cert/sha256_legacy_support_nss_win.cc",
255       ]
256     }
257   } else {
258     sources -= [
259       "base/crypto_module_openssl.cc",
260       "cert/ct_log_verifier_openssl.cc",
261       "cert/ct_objects_extractor_openssl.cc",
262       "cert/jwk_serializer_openssl.cc",
263       "cert/x509_util_openssl.cc",
264       "cert/x509_util_openssl.h",
265       "quic/crypto/aead_base_decrypter_openssl.cc",
266       "quic/crypto/aead_base_encrypter_openssl.cc",
267       "quic/crypto/aes_128_gcm_12_decrypter_openssl.cc",
268       "quic/crypto/aes_128_gcm_12_encrypter_openssl.cc",
269       "quic/crypto/chacha20_poly1305_decrypter_openssl.cc",
270       "quic/crypto/chacha20_poly1305_encrypter_openssl.cc",
271       "quic/crypto/channel_id_openssl.cc",
272       "quic/crypto/p256_key_exchange_openssl.cc",
273       "quic/crypto/scoped_evp_aead_ctx.cc",
274       "quic/crypto/scoped_evp_aead_ctx.h",
275       "socket/ssl_client_socket_openssl.cc",
276       "socket/ssl_client_socket_openssl.h",
277       "socket/ssl_server_socket_openssl.cc",
278       "socket/ssl_server_socket_openssl.h",
279       "socket/ssl_session_cache_openssl.cc",
280       "socket/ssl_session_cache_openssl.h",
281       "ssl/openssl_platform_key.h",
282       "ssl/openssl_ssl_util.cc",
283       "ssl/openssl_ssl_util.h",
284     ]
285     if (is_mac) {
286       sources -= [
287         "ssl/openssl_platform_key_mac.cc",
288       ]
289     }
290     if (is_win) {
291       sources -= [
292         "cert/sha256_legacy_support_openssl_win.cc",
293         "ssl/openssl_platform_key_win.cc",
294       ]
295     }
296   }
298   if (!use_openssl_certs) {
299     sources -= [
300       "base/keygen_handler_openssl.cc",
301       "base/openssl_private_key_store.h",
302       "base/openssl_private_key_store_memory.cc",
303       "cert/cert_database_openssl.cc",
304       "cert/cert_verify_proc_openssl.cc",
305       "cert/cert_verify_proc_openssl.h",
306       "cert/test_root_certs_openssl.cc",
307       "cert/x509_certificate_openssl.cc",
308       "ssl/openssl_client_key_store.cc",
309       "ssl/openssl_client_key_store.h",
310     ]
311     if (is_android) {
312       sources -= [
313         "base/openssl_private_key_store_android.cc",
314       ]
315     }
316   } else if (is_android) {
317     # Android doesn't use these even when using OpenSSL.
318     sources -= [
319       "base/openssl_private_key_store_memory.cc",
320       "cert/cert_database_openssl.cc",
321       "cert/cert_verify_proc_openssl.cc",
322       "cert/test_root_certs_openssl.cc",
323     ]
324   }
326   if (use_glib && !is_chromeos) {
327     configs += [ "//build/config/linux:gconf" ]
328     deps += [ "//build/config/linux:gio" ]
329   }
331   if (is_linux) {
332     configs += [ "//build/config/linux:libresolv" ]
333   } else {
334     sources -= [
335       "base/crypto_module_nss.cc",
336       "base/keygen_handler_nss.cc",
337       "cert/cert_database_nss.cc",
338       "cert/nss_cert_database.cc",
339       "cert/nss_cert_database.h",
340       "cert/x509_certificate_nss.cc",
341       "third_party/mozilla_security_manager/nsKeygenHandler.cpp",
342       "third_party/mozilla_security_manager/nsKeygenHandler.h",
343       "third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
344       "third_party/mozilla_security_manager/nsNSSCertificateDB.h",
345       "third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
346       "third_party/mozilla_security_manager/nsPKCS12Blob.h",
347     ]
349     if (!is_ios && !use_openssl) {
350       # These files are part of the partial implementation of NSS on iOS so
351       # keep them in that case.
352       sources -= [
353         "cert/test_root_certs_nss.cc",
354         "ocsp/nss_ocsp.cc",
355         "ocsp/nss_ocsp.h",
356       ]
357     }
358   }
360   if (!use_nss_certs) {
361     sources -= [
362       "ssl/client_cert_store_nss.cc",
363       "ssl/client_cert_store_nss.h",
364     ]
365     if (!is_ios) {
366       # These files are part of the partial implementation of NSS on iOS so
367       # keep them in that case (even though use_nss_certs is not set).
368       sources -= [
369         "cert/cert_verify_proc_nss.cc",
370         "cert/cert_verify_proc_nss.h",
371       ]
372     }
373     if (is_chromeos) {
374       # These were already removed on non-ChromeOS.
375       sources -= [
376         "ssl/client_cert_store_chromeos.cc",
377         "ssl/client_cert_store_chromeos.h",
378       ]
379     }
380   }
382   if (!enable_websockets) {
383     sources -= [
384       "websockets/websocket_basic_handshake_stream.cc",
385       "websockets/websocket_basic_handshake_stream.h",
386       "websockets/websocket_basic_stream.cc",
387       "websockets/websocket_basic_stream.h",
388       "websockets/websocket_channel.cc",
389       "websockets/websocket_channel.h",
390       "websockets/websocket_deflate_predictor.h",
391       "websockets/websocket_deflate_predictor_impl.cc",
392       "websockets/websocket_deflate_predictor_impl.h",
393       "websockets/websocket_deflate_stream.cc",
394       "websockets/websocket_deflate_stream.h",
395       "websockets/websocket_deflater.cc",
396       "websockets/websocket_deflater.h",
397       "websockets/websocket_errors.cc",
398       "websockets/websocket_errors.h",
399       "websockets/websocket_extension.cc",
400       "websockets/websocket_extension.h",
401       "websockets/websocket_extension_parser.cc",
402       "websockets/websocket_extension_parser.h",
403       "websockets/websocket_frame.cc",
404       "websockets/websocket_frame.h",
405       "websockets/websocket_frame_parser.cc",
406       "websockets/websocket_frame_parser.h",
407       "websockets/websocket_handshake_constants.cc",
408       "websockets/websocket_handshake_constants.h",
409       "websockets/websocket_handshake_challenge.cc",
410       "websockets/websocket_handshake_challenge.h",
411       "websockets/websocket_handshake_request_info.cc",
412       "websockets/websocket_handshake_request_info.h",
413       "websockets/websocket_handshake_response_info.cc",
414       "websockets/websocket_handshake_response_info.h",
415       "websockets/websocket_handshake_stream_base.h",
416       "websockets/websocket_handshake_stream_create_helper.cc",
417       "websockets/websocket_handshake_stream_create_helper.h",
418       "websockets/websocket_inflater.cc",
419       "websockets/websocket_inflater.h",
420       "websockets/websocket_mux.h",
421       "websockets/websocket_stream.cc",
422       "websockets/websocket_stream.h",
423     ]
424   }
426   if (!enable_mdns) {
427     sources -= [
428       "dns/mdns_cache.cc",
429       "dns/mdns_cache.h",
430       "dns/mdns_client.cc",
431       "dns/mdns_client.h",
432       "dns/mdns_client_impl.cc",
433       "dns/mdns_client_impl.h",
434       "dns/record_parsed.cc",
435       "dns/record_parsed.h",
436       "dns/record_rdata.cc",
437       "dns/record_rdata.h",
438     ]
439   }
441   if (is_win) {
442     sources -= [
443       "http/http_auth_handler_ntlm_portable.cc",
444       "socket/socket_libevent.cc",
445       "socket/socket_libevent.h",
446       "socket/tcp_socket_libevent.cc",
447       "socket/tcp_socket_libevent.h",
448       "udp/udp_socket_libevent.cc",
449       "udp/udp_socket_libevent.h",
450     ]
451   } else {  # !is_win
452     sources -= [
453       "base/winsock_init.cc",
454       "base/winsock_init.h",
455       "base/winsock_util.cc",
456       "base/winsock_util.h",
457       "proxy/proxy_resolver_winhttp.cc",
458       "proxy/proxy_resolver_winhttp.h",
459     ]
460   }
462   if (is_mac) {
463     libs = [
464       "Foundation.framework",
465       "Security.framework",
466       "SystemConfiguration.framework",
467       "resolv",
468     ]
469   }
471   if (is_ios) {
472     # Add back some sources that were otherwise filtered out. iOS additionally
473     # doesn't set USE_NSS but needs some of the files.
474     set_sources_assignment_filter([])
475     sources += [
476       "base/net_util_mac.cc",
477       "base/net_util_mac.h",
478       "base/network_change_notifier_mac.cc",
479       "base/network_config_watcher_mac.cc",
480       "base/platform_mime_util_mac.mm",
481       "cert/cert_verify_proc_nss.cc",
482       "cert/cert_verify_proc_nss.h",
483       "cert/test_root_certs_nss.cc",
484       "cert/x509_util_nss.cc",
485       "cert/x509_util_nss.h",
486       "proxy/proxy_resolver_mac.cc",
487       "proxy/proxy_server_mac.cc",
488       "ocsp/nss_ocsp.cc",
489       "ocsp/nss_ocsp.h",
490     ]
491     set_sources_assignment_filter(sources_assignment_filter)
493     sources -= [ "disk_cache/blockfile/file_posix.cc" ]
494     libs = [
495       "CFNetwork.framework",
496       "MobileCoreServices.framework",
497       "Security.framework",
498       "SystemConfiguration.framework",
499       "resolv",
500     ]
501   }
503   if (is_android) {
504     # Add some Linux sources that were excluded by the filter, but which
505     # are needed.
506     set_sources_assignment_filter([])
507     sources += [
508       "base/platform_mime_util_linux.cc",
509       "base/address_tracker_linux.cc",
510       "base/address_tracker_linux.h",
511       "base/net_util_linux.cc",
512       "base/net_util_linux.h"
513     ]
514     set_sources_assignment_filter(sources_assignment_filter)
516     if (!is_android_webview_build) {
517       deps += [ ":net_jni_headers" ]
518     }
519   }
521   if (use_icu_alternatives_on_android) {
522     deps -= [
523       "//base:i18n",
524       "//third_party/icu",
525     ]
526     sources -= [
527       "base/filename_util_icu.cc",
528       "base/net_string_util_icu.cc",
529       "base/net_util_icu.cc",
530     ]
531     sources += [
532       "base/net_string_util_icu_alternatives_android.cc",
533       "base/net_string_util_icu_alternatives_android.h",
534     ]
535   }
538 grit("net_resources") {
539   source = "base/net_resources.grd"
540   use_qualified_include = true
541   outputs = [
542     "grit/net_resources.h",
543     "net_resources.pak",
544     "net_resources.rc",
545   ]
548 static_library("extras") {
549   sources = gypi_values.net_extras_sources
550   configs += [ "//build/config/compiler:wexit_time_destructors" ]
551   deps = [
552     ":net",
553     "//sql:sql",
554   ]
557 static_library("http_server") {
558   sources = [
559     "server/http_connection.cc",
560     "server/http_connection.h",
561     "server/http_server.cc",
562     "server/http_server.h",
563     "server/http_server_request_info.cc",
564     "server/http_server_request_info.h",
565     "server/http_server_response_info.cc",
566     "server/http_server_response_info.h",
567     "server/web_socket.cc",
568     "server/web_socket.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.h",
593     "tools/dump_cache/url_utilities.cc",
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_posix.cc",
670     "test/spawned_test_server/local_test_server_win.cc",
671     "test/spawned_test_server/local_test_server.cc",
672     "test/spawned_test_server/local_test_server.h",
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_http_job.cc",
681     "test/url_request/url_request_mock_http_job.h",
682     "url_request/test_url_fetcher_factory.cc",
683     "url_request/test_url_fetcher_factory.h",
684     "url_request/test_url_request_interceptor.cc",
685     "url_request/test_url_request_interceptor.h",
686     "url_request/url_request_test_util.cc",
687     "url_request/url_request_test_util.h",
688   ]
690   configs += [ ":net_win_size_truncation" ]
692   public_deps = [
693     "//base",
694     "//base/test:test_support",
695     "//crypto",
696     "//net",
697     "//net/tools/tld_cleanup",
698     "//testing/gmock",
699     "//testing/gtest",
700     "//url",
701   ]
703   if (!use_openssl && (use_nss_certs || is_ios)) {
704     public_deps += ["//crypto:platform" ]
705   }
707   if (!is_android) {
708     sources -= [
709       "test/spawned_test_server/remote_test_server.cc",
710       "test/spawned_test_server/remote_test_server.h",
711       "test/spawned_test_server/spawner_communicator.cc",
712       "test/spawned_test_server/spawner_communicator.h",
713     ]
714   }
716   if (use_v8_in_net) {
717     public_deps += [ ":net_with_v8" ]
718   }
720   if (!enable_mdns) {
721     sources -= [
722       "dns/mock_mdns_socket_factory.cc",
723       "dns/mock_mdns_socket_factory.h",
724     ]
725   }
727   if (!use_nss_certs) {
728     sources -= [
729       "test/cert_test_util_nss.cc",
730     ]
731   }
734 source_set("balsa") {
735   sources = [
736     "tools/balsa/balsa_enums.h",
737     "tools/balsa/balsa_frame.cc",
738     "tools/balsa/balsa_frame.h",
739     "tools/balsa/balsa_headers.cc",
740     "tools/balsa/balsa_headers.h",
741     "tools/balsa/balsa_headers_token_utils.cc",
742     "tools/balsa/balsa_headers_token_utils.h",
743     "tools/balsa/balsa_visitor_interface.h",
744     "tools/balsa/http_message_constants.cc",
745     "tools/balsa/http_message_constants.h",
746     "tools/balsa/noop_balsa_visitor.h",
747     "tools/balsa/simple_buffer.cc",
748     "tools/balsa/simple_buffer.h",
749     "tools/balsa/split.cc",
750     "tools/balsa/split.h",
751     "tools/balsa/string_piece_utils.h",
752     "tools/quic/spdy_utils.cc",
753     "tools/quic/spdy_utils.h",
754   ]
755   deps = [
756     ":net",
757     "//base",
758     "//url",
759   ]
762 if (use_v8_in_net) {
763   component("net_with_v8") {
764     sources = [
765       "proxy/proxy_resolver_v8.cc",
766       "proxy/proxy_resolver_v8.h",
767       "proxy/proxy_resolver_v8_tracing.cc",
768       "proxy/proxy_resolver_v8_tracing.h",
769       "proxy/proxy_service_v8.cc",
770       "proxy/proxy_service_v8.h",
771     ]
773     defines = [ "NET_IMPLEMENTATION" ]
774     configs += [
775       ":net_win_size_truncation",
776       "//build/config/compiler:wexit_time_destructors",
777     ]
779     public_deps = [
780       ":net",
781     ]
782     deps = [
783       "//base",
784       "//gin",
785       "//url",
786       "//v8",
787     ]
788   }
791 if (!is_ios && !is_android) {
792   executable("crash_cache") {
793     testonly = true
794     sources = [ "tools/crash_cache/crash_cache.cc" ]
795     configs += [ ":net_win_size_truncation" ]
796     deps = [
797       ":net",
798       ":test_support",
799       "//base",
800     ]
801   }
803   executable("crl_set_dump") {
804     testonly = true
805     sources = [ "tools/crl_set_dump/crl_set_dump.cc" ]
806     configs += [ ":net_win_size_truncation" ]
807     deps = [
808       ":net",
809       "//base",
810     ]
811   }
813   executable("dns_fuzz_stub") {
814     testonly = true
815     sources = [ "tools/dns_fuzz_stub/dns_fuzz_stub.cc" ]
816     configs += [ ":net_win_size_truncation" ]
817     deps = [
818       ":net",
819       "//base",
820     ]
821   }
823   executable("gdig") {
824     testonly = true
825     sources = [
826       "tools/gdig/file_net_log.cc",
827       "tools/gdig/gdig.cc",
828     ]
829     deps = [
830       ":net",
831       "//base",
832     ]
833   }
835   executable("get_server_time") {
836     testonly = true
837     sources = [ "tools/get_server_time/get_server_time.cc" ]
838     configs += [ ":net_win_size_truncation" ]
839     deps = [
840       ":net",
841       "//base",
842       "//base:i18n",
843       "//url",
844     ]
845   }
847   if (use_v8_in_net) {
848     executable("net_watcher") {
849       testonly = true
850       sources = [ "tools/net_watcher/net_watcher.cc" ]
851       deps = [
852         ":net",
853         ":net_with_v8",
854         "//base",
855       ]
857       if (is_desktop_linux) {
858         configs += [
859           "//build/config/linux:gconf",
860           "//build/config/linux:glib",
861         ]
862         deps += [ "//build/config/linux:gio" ]
863       }
864     }
865   }
867   executable("run_testserver") {
868     testonly = true
869     sources = [ "tools/testserver/run_testserver.cc" ]
870     deps = [
871       ":net",  # TODO(brettw) bug 363749: this shouldn't be necessary. It's not
872                # in the GYP build, and can be removed when the bug is fixed.
873       ":test_support",
874       "//base",
875       "//base/test:test_support",
876       "//testing/gtest",
877     ]
878   }
880   executable("stress_cache") {
881     testonly = true
882     sources = [ "disk_cache/blockfile/stress_cache.cc" ]
883     configs += [ ":net_win_size_truncation" ]
884     deps = [
885       ":net",
886       ":test_support",
887       "//base",
888     ]
889   }
891   executable("tld_cleanup") {
892     sources = [ "tools/tld_cleanup/tld_cleanup.cc" ]
893     configs += [ ":net_win_size_truncation" ]
894     deps = [
895       "//base",
896       "//base:i18n",
897       "//net/tools/tld_cleanup",
898     ]
899   }
902 if (is_linux) {
903   static_library("epoll_server") {
904     sources = [
905       "tools/epoll_server/epoll_server.cc",
906       "tools/epoll_server/epoll_server.h",
907     ]
908     deps = [
909       ":net",
910       "//base",
911     ]
912   }
914   static_library("flip_in_mem_edsm_server_base") {
915     testonly = true
916     sources = [
917       "tools/dump_cache/url_to_filename_encoder.cc",
918       "tools/dump_cache/url_to_filename_encoder.h",
919       "tools/dump_cache/url_utilities.h",
920       "tools/dump_cache/url_utilities.cc",
921       "tools/flip_server/acceptor_thread.h",
922       "tools/flip_server/acceptor_thread.cc",
923       "tools/flip_server/create_listener.cc",
924       "tools/flip_server/create_listener.h",
925       "tools/flip_server/constants.h",
926       "tools/flip_server/flip_config.cc",
927       "tools/flip_server/flip_config.h",
928       "tools/flip_server/http_interface.cc",
929       "tools/flip_server/http_interface.h",
930       "tools/flip_server/loadtime_measurement.h",
931       "tools/flip_server/mem_cache.h",
932       "tools/flip_server/mem_cache.cc",
933       "tools/flip_server/output_ordering.cc",
934       "tools/flip_server/output_ordering.h",
935       "tools/flip_server/ring_buffer.cc",
936       "tools/flip_server/ring_buffer.h",
937       "tools/flip_server/sm_connection.cc",
938       "tools/flip_server/sm_connection.h",
939       "tools/flip_server/sm_interface.h",
940       "tools/flip_server/spdy_ssl.cc",
941       "tools/flip_server/spdy_ssl.h",
942       "tools/flip_server/spdy_interface.cc",
943       "tools/flip_server/spdy_interface.h",
944       "tools/flip_server/spdy_util.cc",
945       "tools/flip_server/spdy_util.h",
946       "tools/flip_server/streamer_interface.cc",
947       "tools/flip_server/streamer_interface.h",
948     ]
949     deps = [
950       ":balsa",
951       ":epoll_server",
952       ":net",
953       "//base",
954       "//third_party/boringssl",
955     ]
956   }
958   executable("flip_in_mem_edsm_server_unittests") {
959     testonly = true
960     sources = [
961       "tools/flip_server/flip_test_utils.cc",
962       "tools/flip_server/flip_test_utils.h",
963       "tools/flip_server/http_interface_test.cc",
964       "tools/flip_server/mem_cache_test.cc",
965       "tools/flip_server/run_all_tests.cc",
966       "tools/flip_server/spdy_interface_test.cc",
967     ]
968     deps = [
969       ":flip_in_mem_edsm_server_base",
970       ":net",
971       ":test_support",
972       "//testing/gtest",
973       "//testing/gmock",
974       "//third_party/boringssl",
975     ]
976   }
978   executable("flip_in_mem_edsm_server") {
979     testonly = true
980     sources = [ "tools/flip_server/flip_in_mem_edsm_server.cc" ]
981     deps = [
982       ":flip_in_mem_edsm_server_base",
983       ":net",
984       "//base",
985     ]
986   }
988   source_set("quic_base") {
989     sources = [
990       "tools/quic/quic_client.cc",
991       "tools/quic/quic_client.h",
992       "tools/quic/quic_client_session.cc",
993       "tools/quic/quic_client_session.h",
994       "tools/quic/quic_default_packet_writer.cc",
995       "tools/quic/quic_default_packet_writer.h",
996       "tools/quic/quic_dispatcher.h",
997       "tools/quic/quic_dispatcher.cc",
998       "tools/quic/quic_epoll_clock.cc",
999       "tools/quic/quic_epoll_clock.h",
1000       "tools/quic/quic_epoll_connection_helper.cc",
1001       "tools/quic/quic_epoll_connection_helper.h",
1002       "tools/quic/quic_in_memory_cache.cc",
1003       "tools/quic/quic_in_memory_cache.h",
1004       "tools/quic/quic_packet_writer_wrapper.cc",
1005       "tools/quic/quic_packet_writer_wrapper.h",
1006       "tools/quic/quic_per_connection_packet_writer.cc",
1007       "tools/quic/quic_per_connection_packet_writer.h",
1008       "tools/quic/quic_server.cc",
1009       "tools/quic/quic_server.h",
1010       "tools/quic/quic_server_session.cc",
1011       "tools/quic/quic_server_session.h",
1012       "tools/quic/quic_socket_utils.cc",
1013       "tools/quic/quic_socket_utils.h",
1014       "tools/quic/quic_spdy_client_stream.cc",
1015       "tools/quic/quic_spdy_client_stream.h",
1016       "tools/quic/quic_spdy_server_stream.cc",
1017       "tools/quic/quic_spdy_server_stream.h",
1018       "tools/quic/quic_time_wait_list_manager.h",
1019       "tools/quic/quic_time_wait_list_manager.cc",
1020     ]
1021     deps = [
1022       ":balsa",
1023       ":epoll_server",
1024       ":net",
1025       "//base",
1026       "//base/third_party/dynamic_annotations",
1027       "//crypto",
1028       "//third_party/boringssl",
1029       "//url",
1030     ]
1031   }
1033   executable("quic_client") {
1034     sources = [ "tools/quic/quic_client_bin.cc" ]
1035     deps = [
1036       ":quic_base",
1037       ":net",
1038       "//base",
1039       "//third_party/boringssl",
1040     ]
1041   }
1044 if (is_android) {
1045   generate_jni("net_jni_headers") {
1046     sources = [
1047       "android/java/src/org/chromium/net/AndroidCertVerifyResult.java",
1048       "android/java/src/org/chromium/net/AndroidKeyStore.java",
1049       "android/java/src/org/chromium/net/AndroidNetworkLibrary.java",
1050       "android/java/src/org/chromium/net/AndroidPrivateKey.java",
1051       "android/java/src/org/chromium/net/GURLUtils.java",
1052       "android/java/src/org/chromium/net/NetworkChangeNotifier.java",
1053       "android/java/src/org/chromium/net/ProxyChangeListener.java",
1054       "android/java/src/org/chromium/net/X509Util.java",
1055     ]
1056     jni_package = "net"
1057   }
1058   generate_jni("net_test_jni_headers") {
1059     sources = [
1060       "android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java",
1061     ]
1062     jni_package = "net"
1063   }
1066 if (is_android || is_linux) {
1067   executable("disk_cache_memory_test") {
1068     testonly = true
1069     sources = [ "tools/disk_cache_memory_test/disk_cache_memory_test.cc" ]
1070     deps = [
1071       ":net",
1072       "//base",
1073     ]
1074   }
1077 # TODO(GYP) make this compile on Android, we need some native test deps done.
1078 # TODO(GYP) Also doesn't work on Windows; dependency on boringssl is wrong.
1079 # TODO(GYP) Also doesn't work on Mac, need to figure out why not.
1080 if (!is_android && !is_win && !is_mac) {
1082 source_set("quic_tools") {
1083   sources = [
1084     "quic/quic_dispatcher.cc",
1085     "quic/quic_dispatcher.h",
1086     "quic/quic_in_memory_cache.cc",
1087     "quic/quic_in_memory_cache.h",
1088     "quic/quic_per_connection_packet_writer.cc",
1089     "quic/quic_per_connection_packet_writer.h",
1090     "quic/quic_server.cc",
1091     "quic/quic_server.h",
1092     "quic/quic_server_packet_writer.cc",
1093     "quic/quic_server_packet_writer.h",
1094     "quic/quic_server_session.cc",
1095     "quic/quic_server_session.h",
1096     "quic/quic_spdy_server_stream.cc",
1097     "quic/quic_spdy_server_stream.h",
1098     "quic/quic_time_wait_list_manager.cc",
1099     "quic/quic_time_wait_list_manager.h",
1100   ]
1101   deps = [
1102     ":net",
1103     "//base",
1104     "//base/third_party/dynamic_annotations",
1105     "//url",
1106   ]
1109 test("net_unittests") {
1110   sources = gypi_values.net_test_sources
1112   configs += [ ":net_win_size_truncation" ]
1113   defines = []
1115   deps = [
1116     ":extras",
1117     ":http_server",
1118     ":net",
1119     ":quic_tools",
1120     ":test_support",
1121     "//base",
1122     "//base:i18n",
1123     "//base:prefs_test_support",
1124     "//base/allocator",
1125     "//base/third_party/dynamic_annotations",
1126     "//crypto",
1127     "//crypto:platform",
1128     "//crypto:test_support",
1129     "//net/base/registry_controlled_domains",
1130     "//testing/gmock",
1131     "//testing/gtest",
1132     "//third_party/zlib",
1133     "//url",
1134   ]
1136   if (is_linux) {
1137     sources += gypi_values.net_linux_test_sources
1138     deps += [
1139       ":balsa",
1140       ":epoll_server",
1141       ":flip_in_mem_edsm_server_base",
1142       ":quic_base",
1143     ]
1144   }
1146   if (is_chromeos) {
1147     sources -= [
1148       "proxy/proxy_config_service_linux_unittest.cc",
1149     ]
1150   }
1152   if (is_android) {
1153     sources -= [
1154       # See bug http://crbug.com/344533.
1155       "disk_cache/blockfile/index_table_v3_unittest.cc",
1156       # No res_ninit() et al on Android, so this doesn't make a lot of
1157       # sense.
1158       "dns/dns_config_service_posix_unittest.cc",
1159     ]
1160     deps += [
1161       ":net_javatests",  # FIXME(brettw)
1162       ":net_test_jni_headers",
1163     ]
1164   }
1166   if (!use_nss_certs) {
1167     sources -= [
1168       "ssl/client_cert_store_nss_unittest.cc",
1169     ]
1170     if (is_chromeos) {  # Already removed for all non-ChromeOS builds.
1171       sources -= [
1172         "ssl/client_cert_store_chromeos_unittest.cc",
1173       ]
1174     }
1175   }
1177   if (use_openssl) {
1178     # When building for OpenSSL, we need to exclude NSS specific tests
1179     # or functionality not supported by OpenSSL yet.
1180     # TODO(bulach): Add equivalent tests when the underlying
1181     #               functionality is ported to OpenSSL.
1182     sources -= [
1183       "cert/nss_cert_database_unittest.cc",
1184       "cert/x509_util_nss_unittest.cc",
1185       "quic/test_tools/crypto_test_utils_nss.cc",
1186     ]
1187     if (is_chromeos) {
1188       # These were already removed in the non-ChromeOS case.
1189       sources -= [
1190         "cert/nss_cert_database_chromeos_unittest.cc",
1191         "cert/nss_profile_filter_chromeos_unittest.cc",
1192       ]
1193     }
1194   } else {
1195     sources -= [
1196       "cert/x509_util_openssl_unittest.cc",
1197       "quic/test_tools/crypto_test_utils_openssl.cc",
1198       "socket/ssl_client_socket_openssl_unittest.cc",
1199       "socket/ssl_session_cache_openssl_unittest.cc",
1200     ]
1201     if (!is_desktop_linux && !is_chromeos) {
1202       sources -= [ "cert/nss_cert_database_unittest.cc" ]
1203     }
1204   }
1206   if (use_kerberos) {
1207     defines += [ "USE_KERBEROS" ]
1208   } else {
1209     sources -= [
1210       "http/http_auth_gssapi_posix_unittest.cc",
1211       "http/http_auth_handler_negotiate_unittest.cc",
1212       "http/mock_gssapi_library_posix.cc",
1213       "http/mock_gssapi_library_posix.h",
1214     ]
1215   }
1217   if (use_openssl || (!is_desktop_linux && !is_chromeos && !is_ios)) {
1218     # Only include this test when on Posix and using NSS for
1219     # cert verification or on iOS (which also uses NSS for certs).
1220     sources -= [ "ocsp/nss_ocsp_unittest.cc" ]
1221   }
1223   if (!use_openssl_certs) {
1224     sources -= [ "ssl/openssl_client_key_store_unittest.cc" ]
1225   }
1227   if (!enable_websockets) {
1228     sources -= [
1229       "websockets/websocket_basic_stream_test.cc",
1230       "websockets/websocket_channel_test.cc",
1231       "websockets/websocket_deflate_predictor_impl_test.cc",
1232       "websockets/websocket_deflate_stream_test.cc",
1233       "websockets/websocket_deflater_test.cc",
1234       "websockets/websocket_errors_test.cc",
1235       "websockets/websocket_extension_parser_test.cc",
1236       "websockets/websocket_frame_parser_test.cc",
1237       "websockets/websocket_frame_test.cc",
1238       "websockets/websocket_handshake_challenge_test.cc",
1239       "websockets/websocket_handshake_stream_create_helper_test.cc",
1240       "websockets/websocket_inflater_test.cc",
1241       "websockets/websocket_stream_test.cc",
1242       "websockets/websocket_test_util.cc",
1243       "websockets/websocket_test_util.h",
1244     ]
1245   }
1247   if (disable_file_support) {
1248     sources -= [
1249       "base/directory_lister_unittest.cc",
1250       "url_request/url_request_file_job_unittest.cc",
1251     ]
1252   }
1254   if (disable_ftp_support) {
1255     sources -= [
1256       "ftp/ftp_auth_cache_unittest.cc",
1257       "ftp/ftp_ctrl_response_buffer_unittest.cc",
1258       "ftp/ftp_directory_listing_parser_ls_unittest.cc",
1259       "ftp/ftp_directory_listing_parser_netware_unittest.cc",
1260       "ftp/ftp_directory_listing_parser_os2_unittest.cc",
1261       "ftp/ftp_directory_listing_parser_unittest.cc",
1262       "ftp/ftp_directory_listing_parser_unittest.h",
1263       "ftp/ftp_directory_listing_parser_vms_unittest.cc",
1264       "ftp/ftp_directory_listing_parser_windows_unittest.cc",
1265       "ftp/ftp_network_transaction_unittest.cc",
1266       "ftp/ftp_util_unittest.cc",
1267       "url_request/url_request_ftp_job_unittest.cc",
1268     ]
1269   }
1271   if (!enable_built_in_dns) {
1272     sources -= [
1273       "dns/address_sorter_posix_unittest.cc",
1274       "dns/address_sorter_unittest.cc",
1275     ]
1276   }
1278   # Always need use_v8_in_net to be 1 to run on Android, so just remove
1279   # net_unittest's dependency on v8 when using icu alternatives instead of
1280   # setting use_v8_in_net to 0.
1281   if (use_v8_in_net && !use_icu_alternatives_on_android) {
1282     deps += [ ":net_with_v8" ]
1283   } else {
1284     sources -= [
1285       "proxy/proxy_resolver_v8_unittest.cc",
1286       "proxy/proxy_resolver_v8_tracing_unittest.cc",
1287     ]
1288   }
1290   if (!enable_mdns) {
1291     sources -= [
1292       "dns/mdns_cache_unittest.cc",
1293       "dns/mdns_client_unittest.cc",
1294       "dns/record_parsed_unittest.cc",
1295       "dns/record_rdata_unittest.cc",
1296     ]
1297   }
1299   if (is_ios) {
1300     # TODO(GYP)
1301     #  'actions': [
1302     #    {
1303     #      'action_name': 'copy_test_data',
1304     #      'variables': {
1305     #        'test_data_files': [
1306     #          'data/ssl/certificates/',
1307     #          'data/test.html',
1308     #          'data/url_request_unittest/',
1309     #        ],
1310     #        'test_data_prefix': 'net',
1311     #      },
1312     #      'includes': [ '../build/copy_test_data_ios.gypi' ],
1313     #    },
1314     #  ],
1315     sources -= [
1316       # TODO(droger): The following tests are disabled because the
1317       # implementation is missing or incomplete.
1318       # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS.
1319       "base/keygen_handler_unittest.cc",
1320       "disk_cache/backend_unittest.cc",
1321       "disk_cache/blockfile/block_files_unittest.cc",
1322       # Need to read input data files.
1323       "filter/gzip_filter_unittest.cc",
1324       "socket/ssl_server_socket_unittest.cc",
1325       "spdy/fuzzing/hpack_fuzz_util_test.cc",
1326       # Need TestServer.
1327       "proxy/proxy_script_fetcher_impl_unittest.cc",
1328       "socket/ssl_client_socket_unittest.cc",
1329       "url_request/url_fetcher_impl_unittest.cc",
1330       "url_request/url_request_context_builder_unittest.cc",
1331       # Needs GetAppOutput().
1332       "test/python_utils_unittest.cc",
1334       # The following tests are disabled because they don't apply to
1335       # iOS.
1336       # OS is not "linux" or "freebsd" or "openbsd".
1337       "socket/unix_domain_client_socket_posix_unittest.cc",
1338       "socket/unix_domain_listen_socket_posix_unittest.cc",
1339       "socket/unix_domain_server_socket_posix_unittest.cc",
1341       # See bug http://crbug.com/344533.
1342       "disk_cache/blockfile/index_table_v3_unittest.cc",
1343     ]
1344   }
1346   if (is_android) {
1347     sources -= [
1348       "dns/dns_config_service_posix_unittest.cc",
1349     ]
1350     # TODO(GYP)
1351     # # TODO(mmenke):  This depends on test_support_base, which depends on
1352     # #                icu.  Figure out a way to remove that dependency.
1353     # 'dependencies': [
1354     #   '../testing/android/native_test.gyp:native_test_native_code',
1355     # ]
1357     set_sources_assignment_filter([])
1358     sources += [ "base/address_tracker_linux_unittest.cc" ]
1359     set_sources_assignment_filter(sources_assignment_filter)
1360   }
1362   if (use_icu_alternatives_on_android) {
1363     sources -= [
1364       "base/filename_util_unittest.cc",
1365       "base/net_util_icu_unittest.cc",
1366     ]
1367     deps -= [ "//base:i18n" ]
1368   }
1371 executable("quic_server") {
1372   sources = [ "quic/quic_server_bin.cc" ]
1373   deps = [
1374     ":quic_tools",
1375     ":net",
1376     "//base",
1377     "//third_party/boringssl",
1378   ]
1381 }  # !is_android && !is_win && !is_mac