blob: 2f0a6bc134d8eecc84575a3052130dc1b6bfab38 [file] [log] [blame]
[email protected]4625ade2014-04-15 19:26:441# Copyright (c) 2013 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//build/config/crypto.gni")
6import("//build/config/features.gni")
7import("//build/config/ui.gni")
[email protected]8a3f8242014-06-05 18:05:128import("//url/config.gni")
[email protected]4625ade2014-04-15 19:26:449
[email protected]26046b52014-07-16 00:11:0310# 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.
13if (!is_android) {
14 import("//tools/grit/grit_rule.gni")
15}
16
[email protected]4625ade2014-04-15 19:26:4417if (is_android) {
18 import("//build/config/android/config.gni")
[email protected]ef0eb442014-05-15 09:32:1819 import("//build/config/android/rules.gni")
[email protected]4625ade2014-04-15 19:26:4420} else if (is_mac) {
21 import("//build/config/mac/mac_sdk.gni")
22}
23
24# The list of net files is kept in net.gypi. Read it.
25gypi_values = exec_script(
26 "//build/gypi_to_gn.py",
[email protected]c7d9b352014-04-29 22:18:0427 [ rebase_path("net.gypi") ],
[email protected]4625ade2014-04-15 19:26:4428 "scope",
29 [ "net.gypi" ])
30
31# Disable Kerberos on ChromeOS, Android and iOS, at least for now. It needs
32# configuration (krb5.conf and so on).
33use_kerberos = !is_chromeos && !is_android && !is_ios
34
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.
40posix_avoid_mmap = is_android && cpu_arch != "x86"
41
42# WebSockets and socket stream code are used everywhere except iOS.
43enable_websockets = !is_ios
[email protected]8a3f8242014-06-05 18:05:1244use_v8_in_net = !is_ios
[email protected]4625ade2014-04-15 19:26:4445enable_built_in_dns = !is_ios
[email protected]8a3f8242014-06-05 18:05:1246disable_ftp_support = is_ios
[email protected]4625ade2014-04-15 19:26:4447
[email protected]384dab92014-06-04 20:26:0848declare_args() {
49 # Disables support for file URLs. File URL support requires use of icu.
50 disable_file_support = false
51}
[email protected]02494ec2014-05-07 15:05:2952
[email protected]4625ade2014-04-15 19:26:4453config("net_config") {
54 defines = []
55 if (posix_avoid_mmap) {
56 defines += [ "POSIX_AVOID_MMAP" ]
57 }
[email protected]02494ec2014-05-07 15:05:2958 if (disable_file_support) {
59 defines += [ "DISABLE_FILE_SUPPORT" ]
60 }
[email protected]4625ade2014-04-15 19:26:4461}
62
[email protected]8603c5de2014-04-16 20:34:3163# Disables Windows warning about size to int truncations.
64# TODO(jschuh): crbug.com/167187 fix this and delete this config.
65config("net_win_size_truncation") {
66 if (is_win) {
[email protected]d980fd112014-04-22 04:42:1367 cflags = [ "/wd4267" ]
[email protected]8603c5de2014-04-16 20:34:3168 }
69}
70
[email protected]4625ade2014-04-15 19:26:4471component("net") {
72 sources =
73 gypi_values.net_nacl_common_sources +
74 gypi_values.net_non_nacl_sources
75
76 cflags = []
[email protected]8603c5de2014-04-16 20:34:3177 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" ]
Brett Wilsone53895272014-09-23 23:41:4687 public_configs = [ ":net_config" ]
[email protected]4625ade2014-04-15 19:26:4488 include_dirs = []
89
Brett Wilsone53895272014-09-23 23:41:4690 public_deps = [
91 "//crypto",
92 "//crypto:platform"
93 ]
[email protected]4625ade2014-04-15 19:26:4494 deps = [
[email protected]d7f04492014-05-13 07:01:3495 ":net_resources",
[email protected]4625ade2014-04-15 19:26:4496 "//base",
97 "//base:i18n",
[email protected]ad66db12014-07-10 12:43:4798 "//base:prefs",
[email protected]4625ade2014-04-15 19:26:4499 "//base/third_party/dynamic_annotations",
[email protected]8a3f8242014-06-05 18:05:12100 "//net/base/registry_controlled_domains",
[email protected]4625ade2014-04-15 19:26:44101 "//sdch",
102 "//third_party/icu",
103 "//third_party/zlib",
104 "//url",
105 ]
106
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 }
120
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 }
128
[email protected]02494ec2014-05-07 15:05:29129 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 }
141
[email protected]8a3f8242014-06-05 18:05:12142 if (disable_ftp_support) {
[email protected]4625ade2014-04-15 19:26:44143 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 }
181
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 }
191
192 if (use_openssl) {
193 sources -= [
[email protected]4625ade2014-04-15 19:26:44194 "base/nss_memio.c",
195 "base/nss_memio.h",
[email protected]4625ade2014-04-15 19:26:44196 "cert/ct_log_verifier_nss.cc",
197 "cert/ct_objects_extractor_nss.cc",
198 "cert/jwk_serializer_nss.cc",
[email protected]4625ade2014-04-15 19:26:44199 "cert/scoped_nss_types.h",
mukai77f8210a2014-10-07 16:35:14200 "cert/test_root_certs_nss.cc",
[email protected]4625ade2014-04-15 19:26:44201 "cert/x509_util_nss.cc",
202 "cert/x509_util_nss.h",
mukai77f8210a2014-10-07 16:35:14203 "ocsp/nss_ocsp.cc",
204 "ocsp/nss_ocsp.h",
[email protected]4625ade2014-04-15 19:26:44205 "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",
[email protected]4625ade2014-04-15 19:26:44219 ]
[email protected]71d94dfce92014-04-30 16:47:24220 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",
[email protected]71d94dfce92014-04-30 16:47:24250 ]
251 }
davidbend5587412014-10-30 21:44:16252 if (is_win) {
253 sources -= [
254 "cert/cert/sha256_legacy_support_nss_win.cc",
255 ]
256 }
[email protected]4625ade2014-04-15 19:26:44257 } else {
258 sources -= [
259 "base/crypto_module_openssl.cc",
[email protected]4625ade2014-04-15 19:26:44260 "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",
[email protected]c8a80e92014-05-17 16:02:08278 "socket/ssl_server_socket_openssl.h",
[email protected]4625ade2014-04-15 19:26:44279 "socket/ssl_session_cache_openssl.cc",
280 "socket/ssl_session_cache_openssl.h",
[email protected]97a854f2014-07-29 07:51:36281 "ssl/openssl_platform_key.h",
282 "ssl/openssl_ssl_util.cc",
283 "ssl/openssl_ssl_util.h",
[email protected]4625ade2014-04-15 19:26:44284 ]
[email protected]97a854f2014-07-29 07:51:36285 if (is_mac) {
286 sources -= [
287 "ssl/openssl_platform_key_mac.cc",
288 ]
289 }
290 if (is_win) {
291 sources -= [
John Abd-El-Malek494329e2014-11-05 19:06:30292 "cert/sha256_legacy_support_openssl_win.cc",
[email protected]97a854f2014-07-29 07:51:36293 "ssl/openssl_platform_key_win.cc",
294 ]
295 }
[email protected]4625ade2014-04-15 19:26:44296 }
297
298 if (!use_openssl_certs) {
299 sources -= [
isherman7e5de442014-09-25 23:00:18300 "base/keygen_handler_openssl.cc",
[email protected]4625ade2014-04-15 19:26:44301 "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 }
[email protected]1ea01752014-05-23 19:01:46316 } 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 ]
[email protected]4625ade2014-04-15 19:26:44324 }
325
mukai77f8210a2014-10-07 16:35:14326 if (use_glib && !is_chromeos) {
[email protected]4625ade2014-04-15 19:26:44327 configs += [ "//build/config/linux:gconf" ]
328 deps += [ "//build/config/linux:gio" ]
329 }
330
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",
[email protected]4625ade2014-04-15 19:26:44340 "cert/x509_certificate_nss.cc",
[email protected]4625ade2014-04-15 19:26:44341 "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 ]
[email protected]e8ab6912014-04-21 20:54:51348
mukai77f8210a2014-10-07 16:35:14349 if (!is_ios && !use_openssl) {
[email protected]e8ab6912014-04-21 20:54:51350 # 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 }
[email protected]4625ade2014-04-15 19:26:44358 }
359
[email protected]e8ab6912014-04-21 20:54:51360 if (!use_nss_certs) {
[email protected]4625ade2014-04-15 19:26:44361 sources -= [
[email protected]4625ade2014-04-15 19:26:44362 "ssl/client_cert_store_nss.cc",
363 "ssl/client_cert_store_nss.h",
364 ]
[email protected]e8ab6912014-04-21 20:54:51365 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 }
[email protected]4625ade2014-04-15 19:26:44373 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 }
381
382 if (!enable_websockets) {
383 sources -= [
[email protected]4625ade2014-04-15 19:26:44384 "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",
ricea11bdcd02014-11-20 09:57:07409 "websockets/websocket_handshake_challenge.cc",
410 "websockets/websocket_handshake_challenge.h",
[email protected]4625ade2014-04-15 19:26:44411 "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",
[email protected]4625ade2014-04-15 19:26:44420 "websockets/websocket_mux.h",
[email protected]4625ade2014-04-15 19:26:44421 "websockets/websocket_stream.cc",
422 "websockets/websocket_stream.h",
[email protected]4625ade2014-04-15 19:26:44423 ]
424 }
425
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 }
440
441 if (is_win) {
442 sources -= [
443 "http/http_auth_handler_ntlm_portable.cc",
[email protected]2ef2b0e2014-07-09 21:12:34444 "socket/socket_libevent.cc",
445 "socket/socket_libevent.h",
[email protected]4625ade2014-04-15 19:26:44446 "socket/tcp_socket_libevent.cc",
447 "socket/tcp_socket_libevent.h",
448 "udp/udp_socket_libevent.cc",
449 "udp/udp_socket_libevent.h",
450 ]
[email protected]4625ade2014-04-15 19:26:44451 } 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 }
461
462 if (is_mac) {
[email protected]4625ade2014-04-15 19:26:44463 libs = [
[email protected]ab9ce6e2014-04-17 20:33:19464 "Foundation.framework",
465 "Security.framework",
466 "SystemConfiguration.framework",
467 "resolv",
[email protected]4625ade2014-04-15 19:26:44468 ]
469 }
470
471 if (is_ios) {
[email protected]b2b2bf52014-05-28 20:26:57472 # 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 += [
guoweis7eb7ab52014-11-14 17:42:56476 "base/net_util_mac.cc",
477 "base/net_util_mac.h",
[email protected]b2b2bf52014-05-28 20:26:57478 "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)
492
[email protected]4625ade2014-04-15 19:26:44493 sources -= [ "disk_cache/blockfile/file_posix.cc" ]
[email protected]4625ade2014-04-15 19:26:44494 libs = [
[email protected]ab9ce6e2014-04-17 20:33:19495 "CFNetwork.framework",
496 "MobileCoreServices.framework",
497 "Security.framework",
498 "SystemConfiguration.framework",
499 "resolv",
[email protected]4625ade2014-04-15 19:26:44500 ]
501 }
502
503 if (is_android) {
[email protected]b2b2bf52014-05-28 20:26:57504 # 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",
guoweis7eb7ab52014-11-14 17:42:56511 "base/net_util_linux.cc",
512 "base/net_util_linux.h"
[email protected]b2b2bf52014-05-28 20:26:57513 ]
514 set_sources_assignment_filter(sources_assignment_filter)
515
[email protected]4625ade2014-04-15 19:26:44516 if (!is_android_webview_build) {
[email protected]4625ade2014-04-15 19:26:44517 deps += [ ":net_jni_headers" ]
[email protected]4625ade2014-04-15 19:26:44518 }
519 }
[email protected]ad66db12014-07-10 12:43:47520
[email protected]85191ed2014-05-15 00:41:49521 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 }
[email protected]4625ade2014-04-15 19:26:44536}
537
538grit("net_resources") {
539 source = "base/net_resources.grd"
[email protected]7ae52902014-08-18 22:36:01540 use_qualified_include = true
[email protected]b89c53842014-07-23 16:32:32541 outputs = [
542 "grit/net_resources.h",
543 "net_resources.pak",
544 "net_resources.rc",
545 ]
[email protected]4625ade2014-04-15 19:26:44546}
547
Brett Wilson83fd4242014-09-02 19:45:33548static_library("extras") {
mef327a8e42014-08-29 17:10:03549 sources = gypi_values.net_extras_sources
550 configs += [ "//build/config/compiler:wexit_time_destructors" ]
551 deps = [
552 ":net",
553 "//sql:sql",
554 ]
555}
556
[email protected]8a3f8242014-06-05 18:05:12557static_library("http_server") {
[email protected]4625ade2014-04-15 19:26:44558 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 ]
jambc6cc8e2014-11-14 17:56:29570 configs += [
571 "//build/config/compiler:wexit_time_destructors",
572 ":net_win_size_truncation"
573 ]
[email protected]4625ade2014-04-15 19:26:44574 deps = [
575 ":net",
576 "//base",
577 ]
578}
579
[email protected]8603c5de2014-04-16 20:34:31580executable("dump_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:24581 testonly = true
[email protected]8603c5de2014-04-16 20:34:31582 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",
[email protected]8603c5de2014-04-16 20:34:31590 "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 ]
[email protected]4625ade2014-04-15 19:26:44595
[email protected]8603c5de2014-04-16 20:34:31596 configs += [ ":net_win_size_truncation" ]
597
598 deps = [
599 "//base",
600 ":net",
[email protected]b2b2bf52014-05-28 20:26:57601 ":test_support",
[email protected]8603c5de2014-04-16 20:34:31602 ]
603}
604
[email protected]b2b2bf52014-05-28 20:26:57605source_set("test_support") {
Brett Wilson8f80ad0b2014-09-08 19:50:24606 testonly = true
[email protected]8603c5de2014-04-16 20:34:31607 sources = [
mmenke9e4ea8fe2014-11-19 23:12:30608 "base/captured_net_log_entry.cc",
609 "base/captured_net_log_entry.h",
[email protected]8603c5de2014-04-16 20:34:31610 "base/capturing_net_log.cc",
611 "base/capturing_net_log.h",
mmenke9e4ea8fe2014-11-19 23:12:30612 "base/capturing_net_log_observer.cc",
613 "base/capturing_net_log_observer.h",
[email protected]8603c5de2014-04-16 20:34:31614 "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",
[email protected]8a3f8242014-06-05 18:05:12640 "http/http_transaction_test_util.cc",
641 "http/http_transaction_test_util.h",
[email protected]8603c5de2014-04-16 20:34:31642 "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",
[email protected]83e1ae32014-07-18 10:57:07652 "test/cert_test_util_nss.cc",
[email protected]8603c5de2014-04-16 20:34:31653 "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",
Brett Wilson32ce17a2014-11-10 17:45:30678 "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",
[email protected]8603c5de2014-04-16 20:34:31682 "url_request/test_url_fetcher_factory.cc",
683 "url_request/test_url_fetcher_factory.h",
tommyclieaae5d92014-09-09 06:03:47684 "url_request/test_url_request_interceptor.cc",
685 "url_request/test_url_request_interceptor.h",
[email protected]8603c5de2014-04-16 20:34:31686 "url_request/url_request_test_util.cc",
687 "url_request/url_request_test_util.h",
688 ]
689
690 configs += [ ":net_win_size_truncation" ]
691
Brett Wilsone53895272014-09-23 23:41:46692 public_deps = [
[email protected]8603c5de2014-04-16 20:34:31693 "//base",
694 "//base/test:test_support",
[email protected]22fe91d2014-08-12 17:07:12695 "//crypto",
[email protected]59ff2d42014-04-22 22:25:23696 "//net",
[email protected]8603c5de2014-04-16 20:34:31697 "//net/tools/tld_cleanup",
698 "//testing/gmock",
699 "//testing/gtest",
700 "//url",
701 ]
702
davidben15d69d482014-09-29 18:24:08703 if (!use_openssl && (use_nss_certs || is_ios)) {
704 public_deps += ["//crypto:platform" ]
[email protected]8603c5de2014-04-16 20:34:31705 }
706
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 }
715
716 if (use_v8_in_net) {
Brett Wilsone53895272014-09-23 23:41:46717 public_deps += [ ":net_with_v8" ]
[email protected]8603c5de2014-04-16 20:34:31718 }
719
720 if (!enable_mdns) {
721 sources -= [
722 "dns/mock_mdns_socket_factory.cc",
723 "dns/mock_mdns_socket_factory.h",
724 ]
725 }
726
davidben15d69d482014-09-29 18:24:08727 if (!use_nss_certs) {
[email protected]83e1ae32014-07-18 10:57:07728 sources -= [
729 "test/cert_test_util_nss.cc",
730 ]
731 }
[email protected]8603c5de2014-04-16 20:34:31732}
733
[email protected]ceeaac792014-06-25 05:14:43734source_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",
[email protected]22fe91d2014-08-12 17:07:12758 "//url",
[email protected]ceeaac792014-06-25 05:14:43759 ]
760}
761
[email protected]8603c5de2014-04-16 20:34:31762if (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 ]
772
773 defines = [ "NET_IMPLEMENTATION" ]
774 configs += [
775 ":net_win_size_truncation",
776 "//build/config/compiler:wexit_time_destructors",
777 ]
778
Brett Wilsone53895272014-09-23 23:41:46779 public_deps = [
[email protected]8603c5de2014-04-16 20:34:31780 ":net",
Brett Wilsone53895272014-09-23 23:41:46781 ]
782 deps = [
[email protected]8603c5de2014-04-16 20:34:31783 "//base",
784 "//gin",
785 "//url",
786 "//v8",
787 ]
788 }
789}
790
791if (!is_ios && !is_android) {
792 executable("crash_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:24793 testonly = true
[email protected]8603c5de2014-04-16 20:34:31794 sources = [ "tools/crash_cache/crash_cache.cc" ]
795 configs += [ ":net_win_size_truncation" ]
796 deps = [
797 ":net",
[email protected]b2b2bf52014-05-28 20:26:57798 ":test_support",
[email protected]8603c5de2014-04-16 20:34:31799 "//base",
800 ]
801 }
802
803 executable("crl_set_dump") {
Brett Wilson8f80ad0b2014-09-08 19:50:24804 testonly = true
[email protected]8603c5de2014-04-16 20:34:31805 sources = [ "tools/crl_set_dump/crl_set_dump.cc" ]
806 configs += [ ":net_win_size_truncation" ]
807 deps = [
808 ":net",
809 "//base",
810 ]
811 }
812
813 executable("dns_fuzz_stub") {
Brett Wilson8f80ad0b2014-09-08 19:50:24814 testonly = true
[email protected]8603c5de2014-04-16 20:34:31815 sources = [ "tools/dns_fuzz_stub/dns_fuzz_stub.cc" ]
816 configs += [ ":net_win_size_truncation" ]
817 deps = [
818 ":net",
819 "//base",
820 ]
821 }
822
823 executable("gdig") {
Brett Wilson8f80ad0b2014-09-08 19:50:24824 testonly = true
[email protected]8603c5de2014-04-16 20:34:31825 sources = [
826 "tools/gdig/file_net_log.cc",
827 "tools/gdig/gdig.cc",
828 ]
829 deps = [
830 ":net",
831 "//base",
832 ]
833 }
834
835 executable("get_server_time") {
Brett Wilson8f80ad0b2014-09-08 19:50:24836 testonly = true
[email protected]8603c5de2014-04-16 20:34:31837 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 }
846
847 if (use_v8_in_net) {
848 executable("net_watcher") {
Brett Wilson8f80ad0b2014-09-08 19:50:24849 testonly = true
[email protected]8603c5de2014-04-16 20:34:31850 sources = [ "tools/net_watcher/net_watcher.cc" ]
851 deps = [
852 ":net",
853 ":net_with_v8",
854 "//base",
855 ]
856
mukai77f8210a2014-10-07 16:35:14857 if (is_desktop_linux) {
[email protected]22fe91d2014-08-12 17:07:12858 configs += [
859 "//build/config/linux:gconf",
860 "//build/config/linux:glib",
861 ]
[email protected]8603c5de2014-04-16 20:34:31862 deps += [ "//build/config/linux:gio" ]
863 }
864 }
865 }
866
867 executable("run_testserver") {
Brett Wilson8f80ad0b2014-09-08 19:50:24868 testonly = true
[email protected]8603c5de2014-04-16 20:34:31869 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.
[email protected]b2b2bf52014-05-28 20:26:57873 ":test_support",
[email protected]8603c5de2014-04-16 20:34:31874 "//base",
875 "//base/test:test_support",
876 "//testing/gtest",
877 ]
878 }
879
880 executable("stress_cache") {
Brett Wilson8f80ad0b2014-09-08 19:50:24881 testonly = true
[email protected]8603c5de2014-04-16 20:34:31882 sources = [ "disk_cache/blockfile/stress_cache.cc" ]
883 configs += [ ":net_win_size_truncation" ]
884 deps = [
885 ":net",
[email protected]b2b2bf52014-05-28 20:26:57886 ":test_support",
[email protected]8603c5de2014-04-16 20:34:31887 "//base",
888 ]
889 }
890
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 }
900}
901
902if (is_linux) {
[email protected]8a3f8242014-06-05 18:05:12903 static_library("epoll_server") {
[email protected]8603c5de2014-04-16 20:34:31904 sources = [
905 "tools/epoll_server/epoll_server.cc",
906 "tools/epoll_server/epoll_server.h",
907 ]
908 deps = [
909 ":net",
910 "//base",
911 ]
912 }
913
[email protected]8a3f8242014-06-05 18:05:12914 static_library("flip_in_mem_edsm_server_base") {
Brett Wilson8f80ad0b2014-09-08 19:50:24915 testonly = true
[email protected]8603c5de2014-04-16 20:34:31916 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",
[email protected]edfd0f42014-07-22 18:20:37954 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:31955 ]
956 }
957
958 executable("flip_in_mem_edsm_server_unittests") {
Brett Wilson8f80ad0b2014-09-08 19:50:24959 testonly = true
[email protected]8603c5de2014-04-16 20:34:31960 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",
[email protected]b2b2bf52014-05-28 20:26:57971 ":test_support",
[email protected]8603c5de2014-04-16 20:34:31972 "//testing/gtest",
973 "//testing/gmock",
[email protected]edfd0f42014-07-22 18:20:37974 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:31975 ]
976 }
977
978 executable("flip_in_mem_edsm_server") {
Brett Wilson8f80ad0b2014-09-08 19:50:24979 testonly = true
[email protected]8603c5de2014-04-16 20:34:31980 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 }
987
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",
[email protected]6d515822014-08-22 01:58:061006 "tools/quic/quic_per_connection_packet_writer.cc",
1007 "tools/quic/quic_per_connection_packet_writer.h",
[email protected]8603c5de2014-04-16 20:34:311008 "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",
[email protected]8603c5de2014-04-16 20:34:311020 ]
1021 deps = [
1022 ":balsa",
1023 ":epoll_server",
1024 ":net",
1025 "//base",
1026 "//base/third_party/dynamic_annotations",
1027 "//crypto",
[email protected]edfd0f42014-07-22 18:20:371028 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:311029 "//url",
1030 ]
1031 }
1032
1033 executable("quic_client") {
1034 sources = [ "tools/quic/quic_client_bin.cc" ]
1035 deps = [
1036 ":quic_base",
1037 ":net",
1038 "//base",
[email protected]edfd0f42014-07-22 18:20:371039 "//third_party/boringssl",
[email protected]8603c5de2014-04-16 20:34:311040 ]
1041 }
[email protected]8603c5de2014-04-16 20:34:311042}
1043
[email protected]ef0eb442014-05-15 09:32:181044if (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 }
cjhopmandad5f4272014-09-05 01:00:551058 generate_jni("net_test_jni_headers") {
1059 sources = [
1060 "android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java",
1061 ]
1062 jni_package = "net"
1063 }
[email protected]ef0eb442014-05-15 09:32:181064}
[email protected]8603c5de2014-04-16 20:34:311065
1066if (is_android || is_linux) {
1067 executable("disk_cache_memory_test") {
Brett Wilson8f80ad0b2014-09-08 19:50:241068 testonly = true
[email protected]8603c5de2014-04-16 20:34:311069 sources = [ "tools/disk_cache_memory_test/disk_cache_memory_test.cc" ]
1070 deps = [
1071 ":net",
1072 "//base",
1073 ]
1074 }
1075}
[email protected]8a3f8242014-06-05 18:05:121076
1077# TODO(GYP) make this compile on Android, we need some native test deps done.
[email protected]bd82a57d2014-07-31 16:52:341078# TODO(GYP) Also doesn't work on Windows; dependency on boringssl is wrong.
dprankecf8465db72014-11-10 23:51:221079# TODO(GYP) Also doesn't work on Mac, need to figure out why not.
1080if (!is_android && !is_win && !is_mac) {
[email protected]8a3f8242014-06-05 18:05:121081
[email protected]ceeaac792014-06-25 05:14:431082source_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 = [
[email protected]ceeaac792014-06-25 05:14:431102 ":net",
1103 "//base",
1104 "//base/third_party/dynamic_annotations",
1105 "//url",
1106 ]
1107}
1108
[email protected]8a3f8242014-06-05 18:05:121109test("net_unittests") {
1110 sources = gypi_values.net_test_sources
1111
1112 configs += [ ":net_win_size_truncation" ]
1113 defines = []
1114
1115 deps = [
Brett Wilson83fd4242014-09-02 19:45:331116 ":extras",
[email protected]8a3f8242014-06-05 18:05:121117 ":http_server",
1118 ":net",
[email protected]ceeaac792014-06-25 05:14:431119 ":quic_tools",
[email protected]8a3f8242014-06-05 18:05:121120 ":test_support",
1121 "//base",
1122 "//base:i18n",
[email protected]ad66db12014-07-10 12:43:471123 "//base:prefs_test_support",
[email protected]8a3f8242014-06-05 18:05:121124 "//base/allocator",
1125 "//base/third_party/dynamic_annotations",
1126 "//crypto",
1127 "//crypto:platform",
[email protected]190933f2014-07-28 09:56:511128 "//crypto:test_support",
[email protected]8a3f8242014-06-05 18:05:121129 "//net/base/registry_controlled_domains",
1130 "//testing/gmock",
1131 "//testing/gtest",
1132 "//third_party/zlib",
1133 "//url",
1134 ]
1135
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 }
1145
1146 if (is_chromeos) {
1147 sources -= [
[email protected]8a3f8242014-06-05 18:05:121148 "proxy/proxy_config_service_linux_unittest.cc",
1149 ]
1150 }
1151
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 }
1165
1166 if (!use_nss_certs) {
[email protected]852f7182014-06-09 16:59:481167 sources -= [
1168 "ssl/client_cert_store_nss_unittest.cc",
[email protected]852f7182014-06-09 16:59:481169 ]
[email protected]b2f44d12014-06-10 17:48:031170 if (is_chromeos) { # Already removed for all non-ChromeOS builds.
1171 sources -= [
1172 "ssl/client_cert_store_chromeos_unittest.cc",
1173 ]
1174 }
[email protected]8a3f8242014-06-05 18:05:121175 }
1176
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 -= [
[email protected]8a3f8242014-06-05 18:05:121183 "cert/nss_cert_database_unittest.cc",
[email protected]8a3f8242014-06-05 18:05:121184 "cert/x509_util_nss_unittest.cc",
1185 "quic/test_tools/crypto_test_utils_nss.cc",
1186 ]
brettwc859f18f2014-09-18 23:34:501187 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 }
[email protected]8a3f8242014-06-05 18:05:121194 } 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 }
1205
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 }
1216
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 }
1222
1223 if (!use_openssl_certs) {
1224 sources -= [ "ssl/openssl_client_key_store_unittest.cc" ]
1225 }
1226
1227 if (!enable_websockets) {
1228 sources -= [
[email protected]8a3f8242014-06-05 18:05:121229 "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",
ricea11bdcd02014-11-20 09:57:071238 "websockets/websocket_handshake_challenge_test.cc",
[email protected]8a3f8242014-06-05 18:05:121239 "websockets/websocket_handshake_stream_create_helper_test.cc",
1240 "websockets/websocket_inflater_test.cc",
[email protected]8a3f8242014-06-05 18:05:121241 "websockets/websocket_stream_test.cc",
1242 "websockets/websocket_test_util.cc",
1243 "websockets/websocket_test_util.h",
[email protected]8a3f8242014-06-05 18:05:121244 ]
1245 }
1246
1247 if (disable_file_support) {
1248 sources -= [
1249 "base/directory_lister_unittest.cc",
1250 "url_request/url_request_file_job_unittest.cc",
1251 ]
1252 }
1253
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 }
1270
1271 if (!enable_built_in_dns) {
1272 sources -= [
1273 "dns/address_sorter_posix_unittest.cc",
1274 "dns/address_sorter_unittest.cc",
1275 ]
1276 }
1277
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 }
1289
1290 if (!enable_mdns) {
1291 sources -= [
1292 "dns/mdns_cache_unittest.cc",
1293 "dns/mdns_client_unittest.cc",
[email protected]8a3f8242014-06-05 18:05:121294 "dns/record_parsed_unittest.cc",
1295 "dns/record_rdata_unittest.cc",
1296 ]
1297 }
1298
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",
1333
1334 # The following tests are disabled because they don't apply to
1335 # iOS.
1336 # OS is not "linux" or "freebsd" or "openbsd".
[email protected]518c63a2014-07-24 03:51:231337 "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",
[email protected]8a3f8242014-06-05 18:05:121340
1341 # See bug http://crbug.com/344533.
1342 "disk_cache/blockfile/index_table_v3_unittest.cc",
1343 ]
1344 }
1345
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 # ]
1356
1357 set_sources_assignment_filter([])
1358 sources += [ "base/address_tracker_linux_unittest.cc" ]
1359 set_sources_assignment_filter(sources_assignment_filter)
1360 }
1361
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 }
1369}
1370
[email protected]ceeaac792014-06-25 05:14:431371executable("quic_server") {
1372 sources = [ "quic/quic_server_bin.cc" ]
1373 deps = [
1374 ":quic_tools",
1375 ":net",
1376 "//base",
[email protected]edfd0f42014-07-22 18:20:371377 "//third_party/boringssl",
[email protected]ceeaac792014-06-25 05:14:431378 ]
1379}
1380
dprankecf8465db72014-11-10 23:51:221381} # !is_android && !is_win && !is_mac