Upstream version 11.40.277.0
[platform/framework/web/crosswalk.git] / src / net / net.gyp
1 # Copyright 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
5 {
6   'variables': {
7     'chromium_code': 1,
8
9     'linux_link_kerberos%': 0,
10     'conditions': [
11       ['chromeos==1 or embedded==1 or OS=="android" or OS=="ios"', {
12         # Disable Kerberos on ChromeOS, Android and iOS, at least for now.
13         # It needs configuration (krb5.conf and so on).
14         'use_kerberos%': 0,
15       }, {  # chromeos == 0 and embedded==0 and OS!="android" and OS!="ios"
16         'use_kerberos%': 1,
17       }],
18       ['OS=="android" and target_arch != "ia32"', {
19         # The way the cache uses mmap() is inefficient on some Android devices.
20         # If this flag is set, we hackily avoid using mmap() in the disk cache.
21         # We are pretty confident that mmap-ing the index would not hurt any
22         # existing x86 android devices, but we cannot be so sure about the
23         # variety of ARM devices. So enable it for x86 only for now.
24         'posix_avoid_mmap%': 1,
25       }, {
26         'posix_avoid_mmap%': 0,
27       }],
28       ['OS=="ios"', {
29         # Websockets and socket stream are not used on iOS.
30         'enable_websockets%': 0,
31         # iOS does not use V8.
32         'use_v8_in_net%': 0,
33         'enable_built_in_dns%': 0,
34       }, {
35         'enable_websockets%': 1,
36         'use_v8_in_net%': 1,
37         'enable_built_in_dns%': 1,
38       }],
39     ],
40   },
41   'includes': [
42     '../build/win_precompile.gypi',
43     'net.gypi',
44   ],
45   'targets': [
46     {
47       'target_name': 'net_derived_sources',
48       'type': 'none',
49       'sources': [
50         'base/registry_controlled_domains/effective_tld_names.gperf',
51         'base/registry_controlled_domains/effective_tld_names_unittest1.gperf',
52         'base/registry_controlled_domains/effective_tld_names_unittest2.gperf',
53         'base/registry_controlled_domains/effective_tld_names_unittest3.gperf',
54         'base/registry_controlled_domains/effective_tld_names_unittest4.gperf',
55         'base/registry_controlled_domains/effective_tld_names_unittest5.gperf',
56         'base/registry_controlled_domains/effective_tld_names_unittest6.gperf',
57       ],
58       'rules': [
59         {
60           'rule_name': 'dafsa',
61           'extension': 'gperf',
62           'outputs': [
63             '<(SHARED_INTERMEDIATE_DIR)/net/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT)-inc.cc',
64           ],
65           'inputs': [
66             'tools/tld_cleanup/make_dafsa.py',
67           ],
68           'action': [
69             'python',
70             'tools/tld_cleanup/make_dafsa.py',
71             '<(RULE_INPUT_PATH)',
72             '<(SHARED_INTERMEDIATE_DIR)/net/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT)-inc.cc',
73           ],
74         },
75       ],
76       'direct_dependent_settings': {
77         'include_dirs': [
78           '<(SHARED_INTERMEDIATE_DIR)'
79         ],
80       },
81     },
82     {
83       'target_name': 'net',
84       'type': '<(component)',
85       'variables': { 'enable_wexit_time_destructors': 1, },
86       'dependencies': [
87         '../base/base.gyp:base',
88         '../base/base.gyp:base_i18n',
89         '../base/base.gyp:base_prefs',
90         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
91         '../crypto/crypto.gyp:crypto',
92         '../sdch/sdch.gyp:sdch',
93         '../third_party/icu/icu.gyp:icui18n',
94         '../third_party/icu/icu.gyp:icuuc',
95         '../third_party/zlib/zlib.gyp:zlib',
96         '../url/url.gyp:url_lib',
97         'net_derived_sources',
98         'net_resources',
99       ],
100       'sources': [
101         '<@(net_nacl_common_sources)',
102         '<@(net_non_nacl_sources)',
103       ],
104       'defines': [
105         'NET_IMPLEMENTATION',
106       ],
107       'export_dependent_settings': [
108         '../base/base.gyp:base',
109       ],
110       'conditions': [
111         ['chromeos==1', {
112           'sources!': [
113              'base/network_change_notifier_linux.cc',
114              'base/network_change_notifier_linux.h',
115              'base/network_change_notifier_netlink_linux.cc',
116              'base/network_change_notifier_netlink_linux.h',
117              'proxy/proxy_config_service_linux.cc',
118              'proxy/proxy_config_service_linux.h',
119           ],
120         }],
121         ['use_kerberos==1', {
122           'defines': [
123             'USE_KERBEROS',
124           ],
125           'conditions': [
126             ['OS=="openbsd"', {
127               'include_dirs': [
128                 '/usr/include/kerberosV'
129               ],
130             }],
131             ['linux_link_kerberos==1', {
132               'link_settings': {
133                 'ldflags': [
134                   '<!@(krb5-config --libs gssapi)',
135                 ],
136               },
137             }, { # linux_link_kerberos==0
138               'defines': [
139                 'DLOPEN_KERBEROS',
140               ],
141             }],
142           ],
143         }, { # use_kerberos == 0
144           'sources!': [
145             'http/http_auth_gssapi_posix.cc',
146             'http/http_auth_gssapi_posix.h',
147             'http/http_auth_handler_negotiate.h',
148             'http/http_auth_handler_negotiate.cc',
149           ],
150         }],
151         ['posix_avoid_mmap==1', {
152           'defines': [
153             'POSIX_AVOID_MMAP',
154           ],
155           'direct_dependent_settings': {
156             'defines': [
157               'POSIX_AVOID_MMAP',
158             ],
159           },
160           'sources!': [
161             'disk_cache/blockfile/mapped_file_posix.cc',
162           ],
163         }, { # else
164           'sources!': [
165             'disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc',
166           ],
167         }],
168         ['disable_file_support==1', {
169           # TODO(mmenke):  Should probably get rid of the dependency on
170           # net_resources in this case (It's used in net_util, to format
171           # directory listings.  Also used outside of net/).
172           'sources!': [
173             'base/directory_lister.cc',
174             'base/directory_lister.h',
175             'url_request/url_request_file_dir_job.cc',
176             'url_request/url_request_file_dir_job.h',
177             'url_request/url_request_file_job.cc',
178             'url_request/url_request_file_job.h',
179             'url_request/file_protocol_handler.cc',
180             'url_request/file_protocol_handler.h',
181           ],
182         }],
183         ['disable_ftp_support==1', {
184           'sources/': [
185             ['exclude', '^ftp/'],
186           ],
187           'sources!': [
188             'url_request/ftp_protocol_handler.cc',
189             'url_request/ftp_protocol_handler.h',
190             'url_request/url_request_ftp_job.cc',
191             'url_request/url_request_ftp_job.h',
192           ],
193         }],
194         ['enable_built_in_dns==1', {
195           'defines': [
196             'ENABLE_BUILT_IN_DNS',
197           ]
198         }, { # else
199           'sources!': [
200             'dns/address_sorter_posix.cc',
201             'dns/address_sorter_posix.h',
202             'dns/dns_client.cc',
203           ],
204         }],
205         ['use_openssl==1', {
206             'sources!': [
207               'base/crypto_module_nss.cc',
208               'base/keygen_handler_nss.cc',
209               'base/nss_memio.c',
210               'base/nss_memio.h',
211               'cert/cert_database_nss.cc',
212               'cert/cert_verify_proc_nss.cc',
213               'cert/cert_verify_proc_nss.h',
214               'cert/ct_log_verifier_nss.cc',
215               'cert/ct_objects_extractor_nss.cc',
216               'cert/jwk_serializer_nss.cc',
217               'cert/nss_cert_database.cc',
218               'cert/nss_cert_database.h',
219               'cert/nss_cert_database_chromeos.cc',
220               'cert/nss_cert_database_chromeos.h',
221               'cert/nss_profile_filter_chromeos.cc',
222               'cert/nss_profile_filter_chromeos.h',
223               'cert/sha256_legacy_support_nss_win.cc',
224               'cert/scoped_nss_types.h',
225               'cert/test_root_certs_nss.cc',
226               'cert/x509_certificate_nss.cc',
227               'cert/x509_util_nss.cc',
228               'cert/x509_util_nss.h',
229               'ocsp/nss_ocsp.cc',
230               'ocsp/nss_ocsp.h',
231               'quic/crypto/aead_base_decrypter_nss.cc',
232               'quic/crypto/aead_base_encrypter_nss.cc',
233               'quic/crypto/aes_128_gcm_12_decrypter_nss.cc',
234               'quic/crypto/aes_128_gcm_12_encrypter_nss.cc',
235               'quic/crypto/chacha20_poly1305_decrypter_nss.cc',
236               'quic/crypto/chacha20_poly1305_encrypter_nss.cc',
237               'quic/crypto/channel_id_nss.cc',
238               'quic/crypto/p256_key_exchange_nss.cc',
239               'socket/nss_ssl_util.cc',
240               'socket/nss_ssl_util.h',
241               'socket/ssl_client_socket_nss.cc',
242               'socket/ssl_client_socket_nss.h',
243               'socket/ssl_server_socket_nss.cc',
244               'socket/ssl_server_socket_nss.h',
245               'third_party/mozilla_security_manager/nsKeygenHandler.cpp',
246               'third_party/mozilla_security_manager/nsKeygenHandler.h',
247               'third_party/mozilla_security_manager/nsNSSCertificateDB.cpp',
248               'third_party/mozilla_security_manager/nsNSSCertificateDB.h',
249               'third_party/mozilla_security_manager/nsPKCS12Blob.cpp',
250               'third_party/mozilla_security_manager/nsPKCS12Blob.h',
251             ],
252             'dependencies': [
253               '../third_party/boringssl/boringssl.gyp:boringssl',
254             ],
255           },
256           {  # else !use_openssl: remove the unneeded files and depend on NSS.
257             'sources!': [
258               'base/crypto_module_openssl.cc',
259               'cert/ct_log_verifier_openssl.cc',
260               'cert/ct_objects_extractor_openssl.cc',
261               'cert/jwk_serializer_openssl.cc',
262               'cert/sha256_legacy_support_openssl_win.cc',
263               'cert/x509_util_openssl.cc',
264               'cert/x509_util_openssl.h',
265               'crypto/scoped_openssl_types.h',
266               'quic/crypto/aead_base_decrypter_openssl.cc',
267               'quic/crypto/aead_base_encrypter_openssl.cc',
268               'quic/crypto/aes_128_gcm_12_decrypter_openssl.cc',
269               'quic/crypto/aes_128_gcm_12_encrypter_openssl.cc',
270               'quic/crypto/chacha20_poly1305_decrypter_openssl.cc',
271               'quic/crypto/chacha20_poly1305_encrypter_openssl.cc',
272               'quic/crypto/channel_id_openssl.cc',
273               'quic/crypto/p256_key_exchange_openssl.cc',
274               'quic/crypto/scoped_evp_aead_ctx.cc',
275               'quic/crypto/scoped_evp_aead_ctx.h',
276               'socket/ssl_client_socket_openssl.cc',
277               'socket/ssl_client_socket_openssl.h',
278               'socket/ssl_server_socket_openssl.cc',
279               'socket/ssl_server_socket_openssl.h',
280               'socket/ssl_session_cache_openssl.cc',
281               'socket/ssl_session_cache_openssl.h',
282               'ssl/openssl_platform_key_mac.cc',
283               'ssl/openssl_platform_key_win.cc',
284               'ssl/openssl_platform_key.h',
285               'ssl/openssl_ssl_util.cc',
286               'ssl/openssl_ssl_util.h',
287             ],
288             'conditions': [
289               # Pull in the bundled or system NSS as appropriate.
290               [ 'desktop_linux == 1 or chromeos == 1', {
291                 'dependencies': [
292                   '../build/linux/system.gyp:ssl',
293                 ],
294               }, {
295                 'dependencies': [
296                   '../third_party/nss/nss.gyp:nspr',
297                   '../third_party/nss/nss.gyp:nss',
298                   'third_party/nss/ssl.gyp:libssl',
299                 ],
300               }]
301             ],
302           },
303         ],
304         [ 'use_openssl_certs == 0', {
305             'sources!': [
306               'base/keygen_handler_openssl.cc',
307               'base/openssl_private_key_store.h',
308               'base/openssl_private_key_store_android.cc',
309               'base/openssl_private_key_store_memory.cc',
310               'cert/cert_database_openssl.cc',
311               'cert/cert_verify_proc_openssl.cc',
312               'cert/cert_verify_proc_openssl.h',
313               'cert/test_root_certs_openssl.cc',
314               'cert/x509_certificate_openssl.cc',
315               'ssl/openssl_client_key_store.cc',
316               'ssl/openssl_client_key_store.h',
317             ],
318         }],
319         [ 'use_glib == 1', {
320             'dependencies': [
321               '../build/linux/system.gyp:gconf',
322               '../build/linux/system.gyp:gio',
323             ],
324         }],
325         [ 'desktop_linux == 1 or chromeos == 1', {
326             'conditions': [
327               ['os_bsd==1', {
328                 'sources!': [
329                   'base/network_change_notifier_linux.cc',
330                   'base/network_change_notifier_netlink_linux.cc',
331                   'proxy/proxy_config_service_linux.cc',
332                 ],
333               },{
334                 'dependencies': [
335                   '../build/linux/system.gyp:libresolv',
336                 ],
337               }],
338               ['OS=="solaris"', {
339                 'link_settings': {
340                   'ldflags': [
341                     '-R/usr/lib/mps',
342                   ],
343                 },
344               }],
345             ],
346           },
347           {  # else: OS is not in the above list
348             'sources!': [
349               'base/crypto_module_nss.cc',
350               'base/keygen_handler_nss.cc',
351               'cert/cert_database_nss.cc',
352               'cert/nss_cert_database.cc',
353               'cert/nss_cert_database.h',
354               'cert/test_root_certs_nss.cc',
355               'cert/x509_certificate_nss.cc',
356               'ocsp/nss_ocsp.cc',
357               'ocsp/nss_ocsp.h',
358               'third_party/mozilla_security_manager/nsKeygenHandler.cpp',
359               'third_party/mozilla_security_manager/nsKeygenHandler.h',
360               'third_party/mozilla_security_manager/nsNSSCertificateDB.cpp',
361               'third_party/mozilla_security_manager/nsNSSCertificateDB.h',
362               'third_party/mozilla_security_manager/nsPKCS12Blob.cpp',
363               'third_party/mozilla_security_manager/nsPKCS12Blob.h',
364             ],
365           },
366         ],
367         [ 'use_nss != 1', {
368             'sources!': [
369               'cert/cert_verify_proc_nss.cc',
370               'cert/cert_verify_proc_nss.h',
371               'ssl/client_cert_store_nss.cc',
372               'ssl/client_cert_store_nss.h',
373               'ssl/client_cert_store_chromeos.cc',
374               'ssl/client_cert_store_chromeos.h',
375             ],
376         }],
377         [ 'enable_websockets != 1', {
378             'sources/': [
379               ['exclude', '^socket_stream/'],
380               ['exclude', '^websockets/'],
381             ],
382             'sources!': [
383               'spdy/spdy_websocket_stream.cc',
384               'spdy/spdy_websocket_stream.h',
385             ],
386         }],
387         [ 'enable_mdns != 1', {
388             'sources!' : [
389               'dns/mdns_cache.cc',
390               'dns/mdns_cache.h',
391               'dns/mdns_client.cc',
392               'dns/mdns_client.h',
393               'dns/mdns_client_impl.cc',
394               'dns/mdns_client_impl.h',
395               'dns/record_parsed.cc',
396               'dns/record_parsed.h',
397               'dns/record_rdata.cc',
398               'dns/record_rdata.h',
399             ]
400         }],
401         [ 'OS == "win"', {
402             'sources!': [
403               'http/http_auth_handler_ntlm_portable.cc',
404               'socket/socket_libevent.cc',
405               'socket/socket_libevent.h',
406               'socket/tcp_socket_libevent.cc',
407               'socket/tcp_socket_libevent.h',
408               'udp/udp_socket_libevent.cc',
409               'udp/udp_socket_libevent.h',
410             ],
411              # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
412             'msvs_disabled_warnings': [4267, ],
413           }, { # else: OS != "win"
414             'sources!': [
415               'base/winsock_init.cc',
416               'base/winsock_init.h',
417               'base/winsock_util.cc',
418               'base/winsock_util.h',
419               'proxy/proxy_resolver_winhttp.cc',
420               'proxy/proxy_resolver_winhttp.h',
421             ],
422           },
423         ],
424         [ 'OS == "mac"', {
425             'link_settings': {
426               'libraries': [
427                 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
428                 '$(SDKROOT)/System/Library/Frameworks/Security.framework',
429                 '$(SDKROOT)/System/Library/Frameworks/SystemConfiguration.framework',
430                 '$(SDKROOT)/usr/lib/libresolv.dylib',
431               ]
432             },
433           },
434         ],
435         [ 'OS == "ios"', {
436             'sources!': [
437               'disk_cache/blockfile/file_posix.cc',
438             ],
439             'link_settings': {
440               'libraries': [
441                 '$(SDKROOT)/System/Library/Frameworks/CFNetwork.framework',
442                 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework',
443                 '$(SDKROOT)/System/Library/Frameworks/Security.framework',
444                 '$(SDKROOT)/System/Library/Frameworks/SystemConfiguration.framework',
445                 '$(SDKROOT)/usr/lib/libresolv.dylib',
446               ],
447             },
448           },
449         ],
450         ['OS=="android" and _toolset=="target" and android_webview_build == 0', {
451           'dependencies': [
452              'net_java',
453           ],
454         }],
455         [ 'OS == "android"', {
456             'dependencies': [
457               'net_jni_headers',
458             ],
459             'sources!': [
460               'base/openssl_private_key_store_memory.cc',
461               'cert/cert_database_openssl.cc',
462               'cert/cert_verify_proc_openssl.cc',
463               'cert/test_root_certs_openssl.cc',
464             ],
465           },
466         ],
467         [ 'use_icu_alternatives_on_android == 1', {
468             'dependencies!': [
469               '../base/base.gyp:base_i18n',
470               '../third_party/icu/icu.gyp:icui18n',
471               '../third_party/icu/icu.gyp:icuuc',
472             ],
473             'sources!': [
474               'base/filename_util_icu.cc',
475               'base/net_string_util_icu.cc',
476               'base/net_util_icu.cc',
477             ],
478             'sources': [
479               'base/net_string_util_icu_alternatives_android.cc',
480               'base/net_string_util_icu_alternatives_android.h',
481             ],
482           },
483         ],
484       ],
485       'target_conditions': [
486         # These source files are excluded by default platform rules, but they
487         # are needed in specific cases on other platforms. Re-including them can
488         # only be done in target_conditions as it is evaluated after the
489         # platform rules.
490         ['OS == "android"', {
491           'sources/': [
492             ['include', '^base/platform_mime_util_linux\\.cc$'],
493             ['include', '^base/address_tracker_linux\\.cc$'],
494             ['include', '^base/address_tracker_linux\\.h$'],
495           ],
496         }],
497         ['OS == "ios"', {
498           'sources/': [
499             ['include', '^base/network_change_notifier_mac\\.cc$'],
500             ['include', '^base/network_config_watcher_mac\\.cc$'],
501             ['include', '^base/platform_mime_util_mac\\.mm$'],
502             # The iOS implementation only partially uses NSS and thus does not
503             # defines |use_nss|. In particular the |USE_NSS| preprocessor
504             # definition is not used. The following files are needed though:
505             ['include', '^cert/cert_verify_proc_nss\\.cc$'],
506             ['include', '^cert/cert_verify_proc_nss\\.h$'],
507             ['include', '^cert/test_root_certs_nss\\.cc$'],
508             ['include', '^cert/x509_util_nss\\.cc$'],
509             ['include', '^cert/x509_util_nss\\.h$'],
510             ['include', '^proxy/proxy_resolver_mac\\.cc$'],
511             ['include', '^proxy/proxy_server_mac\\.cc$'],
512             ['include', '^ocsp/nss_ocsp\\.cc$'],
513             ['include', '^ocsp/nss_ocsp\\.h$'],
514           ],
515         }],
516       ],
517     },
518     {
519       'target_name': 'net_unittests',
520       'type': '<(gtest_target_type)',
521       'dependencies': [
522         '../base/base.gyp:base',
523         '../base/base.gyp:base_i18n',
524         '../base/base.gyp:base_prefs_test_support',
525         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
526         '../crypto/crypto.gyp:crypto',
527         '../crypto/crypto.gyp:crypto_test_support',
528         '../testing/gmock.gyp:gmock',
529         '../testing/gtest.gyp:gtest',
530         '../third_party/zlib/zlib.gyp:zlib',
531         '../url/url.gyp:url_lib',
532         'balsa',
533         'http_server',
534         'net',
535         'net_derived_sources',
536         'net_extras',
537         'net_test_support',
538         'quic_tools',
539       ],
540       'sources': [
541         '<@(net_test_sources)',
542       ],
543       'conditions': [
544         ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
545           'dependencies': [
546             'epoll_server',
547             'flip_in_mem_edsm_server_base',
548             'quic_base',
549           ],
550           'sources': [
551             '<@(net_linux_test_sources)',
552           ],
553         }],
554         ['chromeos==1', {
555           'sources!': [
556             'proxy/proxy_config_service_linux_unittest.cc',
557           ],
558         }],
559         [ 'OS == "android"', {
560           'sources!': [
561             # See bug http://crbug.com/344533.
562             'disk_cache/blockfile/index_table_v3_unittest.cc',
563             # No res_ninit() et al on Android, so this doesn't make a lot of
564             # sense.
565             'dns/dns_config_service_posix_unittest.cc',
566           ],
567           'dependencies': [
568             'net_javatests',
569             'net_test_jni_headers',
570           ],
571         }],
572         [ 'use_nss != 1', {
573           'sources!': [
574             'ssl/client_cert_store_nss_unittest.cc',
575             'ssl/client_cert_store_chromeos_unittest.cc',
576           ],
577         }],
578         [ 'use_openssl == 1', {
579           # Avoid compiling/linking with the system library.
580           'dependencies': [
581             '../third_party/boringssl/boringssl.gyp:boringssl',
582           ],
583         }, {  # use_openssl == 0
584           'conditions': [
585             [ 'desktop_linux == 1 or chromeos == 1', {
586               'dependencies': [
587                 '../build/linux/system.gyp:ssl',
588               ],
589             }, {  # desktop_linux == 0 and chromeos == 0
590               'dependencies': [
591                 '../third_party/nss/nss.gyp:nspr',
592                 '../third_party/nss/nss.gyp:nss',
593                 'third_party/nss/ssl.gyp:libssl',
594               ],
595               'sources!': [
596                 'cert/nss_cert_database_unittest.cc',
597               ],
598             }],
599           ],
600         }],
601         [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
602           'conditions': [
603             ['use_allocator!="none"', {
604               'dependencies': [
605                 '../base/allocator/allocator.gyp:allocator',
606               ],
607             }],
608           ],
609         }],
610         [ 'use_kerberos==1', {
611           'defines': [
612             'USE_KERBEROS',
613           ],
614         }, { # use_kerberos == 0
615           'sources!': [
616             'http/http_auth_gssapi_posix_unittest.cc',
617             'http/http_auth_handler_negotiate_unittest.cc',
618             'http/mock_gssapi_library_posix.cc',
619             'http/mock_gssapi_library_posix.h',
620           ],
621         }],
622         [ 'use_openssl == 1 or (desktop_linux == 0 and chromeos == 0 and OS != "ios")', {
623           # Only include this test when on Posix and using NSS for
624           # cert verification or on iOS (which also uses NSS for certs).
625           'sources!': [
626             'ocsp/nss_ocsp_unittest.cc',
627           ],
628         }],
629         [ 'use_openssl==1', {
630             # When building for OpenSSL, we need to exclude NSS specific tests
631             # or functionality not supported by OpenSSL yet.
632             # TODO(bulach): Add equivalent tests when the underlying
633             #               functionality is ported to OpenSSL.
634             'sources!': [
635               'cert/nss_cert_database_unittest.cc',
636               'cert/nss_cert_database_chromeos_unittest.cc',
637               'cert/nss_profile_filter_chromeos_unittest.cc',
638               'cert/x509_util_nss_unittest.cc',
639               'quic/test_tools/crypto_test_utils_nss.cc',
640             ],
641           }, {  # else !use_openssl: remove the unneeded files and pull in NSS.
642             'sources!': [
643               'cert/x509_util_openssl_unittest.cc',
644               'quic/test_tools/crypto_test_utils_openssl.cc',
645               'socket/ssl_client_socket_openssl_unittest.cc',
646               'socket/ssl_session_cache_openssl_unittest.cc',
647             ],
648           },
649         ],
650         [ 'use_openssl_certs == 0', {
651             'sources!': [
652               'ssl/openssl_client_key_store_unittest.cc',
653             ],
654         }],
655         [ 'enable_websockets != 1', {
656             'sources/': [
657               ['exclude', '^socket_stream/'],
658               ['exclude', '^websockets/'],
659               ['exclude', '^spdy/spdy_websocket_stream_unittest\\.cc$'],
660             ],
661         }],
662         ['disable_file_support==1', {
663           'sources!': [
664             'base/directory_lister_unittest.cc',
665             'url_request/url_request_file_job_unittest.cc',
666           ],
667         }],
668         [ 'disable_ftp_support==1', {
669             'sources/': [
670               ['exclude', '^ftp/'],
671             ],
672             'sources!': [
673               'url_request/url_request_ftp_job_unittest.cc',
674             ],
675           },
676         ],
677         [ 'enable_built_in_dns!=1', {
678             'sources!': [
679               'dns/address_sorter_posix_unittest.cc',
680               'dns/address_sorter_unittest.cc',
681             ],
682           },
683         ],
684         # Always need use_v8_in_net to be 1 to run gyp on Android, so just
685         # remove net_unittest's dependency on v8 when using icu alternatives
686         # instead of setting use_v8_in_net to 0.
687         [ 'use_v8_in_net==1 and use_icu_alternatives_on_android==0', {
688             'dependencies': [
689               'net_with_v8',
690             ],
691           }, {  # else: !use_v8_in_net
692             'sources!': [
693               'proxy/proxy_resolver_v8_unittest.cc',
694               'proxy/proxy_resolver_v8_tracing_unittest.cc',
695             ],
696           },
697         ],
698
699         [ 'enable_mdns != 1', {
700             'sources!' : [
701               'dns/mdns_cache_unittest.cc',
702               'dns/mdns_client_unittest.cc',
703               'dns/mdns_query_unittest.cc',
704               'dns/record_parsed_unittest.cc',
705               'dns/record_rdata_unittest.cc',
706             ],
707         }],
708         [ 'OS == "win"', {
709             'sources!': [
710               'dns/dns_config_service_posix_unittest.cc',
711               'http/http_auth_gssapi_posix_unittest.cc',
712             ],
713             # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
714             'msvs_disabled_warnings': [4267, ],
715             'conditions': [
716               [ 'icu_use_data_file_flag == 0', {
717                 # This is needed to trigger the dll copy step on windows.
718                 # TODO(mark): Specifying this here shouldn't be necessary.
719                 'dependencies': [
720                   '../third_party/icu/icu.gyp:icudata',
721                 ],
722               }],
723             ],
724           },
725         ],
726         [ 'OS == "ios"', {
727             'actions': [
728               {
729                 'action_name': 'copy_test_data',
730                 'variables': {
731                   'test_data_files': [
732                     'data/ssl/certificates/',
733                     'data/test.html',
734                     'data/url_request_unittest/',
735                   ],
736                   'test_data_prefix': 'net',
737                 },
738                 'includes': [ '../build/copy_test_data_ios.gypi' ],
739               },
740             ],
741             'sources!': [
742               # TODO(droger): The following tests are disabled because the
743               # implementation is missing or incomplete.
744               # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS.
745               'base/keygen_handler_unittest.cc',
746               'disk_cache/backend_unittest.cc',
747               'disk_cache/blockfile/block_files_unittest.cc',
748               # Need to read input data files.
749               'filter/gzip_filter_unittest.cc',
750               'socket/ssl_server_socket_unittest.cc',
751               'spdy/fuzzing/hpack_fuzz_util_test.cc',
752               # Need TestServer.
753               'proxy/proxy_script_fetcher_impl_unittest.cc',
754               'socket/ssl_client_socket_unittest.cc',
755               'url_request/url_fetcher_impl_unittest.cc',
756               'url_request/url_request_context_builder_unittest.cc',
757               # Needs GetAppOutput().
758               'test/python_utils_unittest.cc',
759
760               # The following tests are disabled because they don't apply to
761               # iOS.
762               # OS is not "linux" or "freebsd" or "openbsd".
763               'socket/unix_domain_client_socket_posix_unittest.cc',
764               'socket/unix_domain_listen_socket_posix_unittest.cc',
765               'socket/unix_domain_server_socket_posix_unittest.cc',
766
767               # See bug http://crbug.com/344533.
768               'disk_cache/blockfile/index_table_v3_unittest.cc',
769             ],
770         }],
771         [ 'OS == "android"', {
772             'sources!': [
773               'dns/dns_config_service_posix_unittest.cc',
774             ],
775           },
776         ],
777         ['OS == "android"', {
778           # TODO(mmenke):  This depends on test_support_base, which depends on
779           #                icu.  Figure out a way to remove that dependency.
780           'dependencies': [
781             '../testing/android/native_test.gyp:native_test_native_code',
782           ]
783         }],
784         [ 'use_icu_alternatives_on_android == 1', {
785             'dependencies!': [
786               '../base/base.gyp:base_i18n',
787             ],
788             'sources!': [
789               'base/filename_util_unittest.cc',
790               'base/net_util_icu_unittest.cc',
791             ],
792           },
793         ],
794         ['v8_use_external_startup_data==1', {
795           'dependencies': [
796             '../gin/gin.gyp:gin',
797           ]
798         }],
799       ],
800       'target_conditions': [
801         # These source files are excluded by default platform rules, but they
802         # are needed in specific cases on other platforms. Re-including them can
803         # only be done in target_conditions as it is evaluated after the
804         # platform rules.
805         ['OS == "android"', {
806           'sources/': [
807             ['include', '^base/address_tracker_linux_unittest\\.cc$'],
808           ],
809         }],
810       ],
811     },
812     {
813       'target_name': 'net_perftests',
814       'type': 'executable',
815       'dependencies': [
816         '../base/base.gyp:base',
817         '../base/base.gyp:base_i18n',
818         '../base/base.gyp:test_support_perf',
819         '../testing/gtest.gyp:gtest',
820         '../url/url.gyp:url_lib',
821         'net',
822         'net_test_support',
823       ],
824       'sources': [
825         'cookies/cookie_monster_perftest.cc',
826         'disk_cache/blockfile/disk_cache_perftest.cc',
827         'proxy/proxy_resolver_perftest.cc',
828         'websockets/websocket_frame_perftest.cc',
829       ],
830       'conditions': [
831         [ 'use_v8_in_net==1', {
832             'dependencies': [
833               'net_with_v8',
834             ],
835           }, {  # else: !use_v8_in_net
836             'sources!': [
837               'proxy/proxy_resolver_perftest.cc',
838             ],
839           },
840         ],
841         [ 'OS == "win"', {
842             'conditions': [
843               [ 'icu_use_data_file_flag == 0', {
844                 # This is needed to trigger the dll copy step on windows.
845                 # TODO(mark): Specifying this here shouldn't be necessary.
846                 'dependencies': [
847                   '../third_party/icu/icu.gyp:icudata',
848                 ],
849               }],
850             ],
851             # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
852             'msvs_disabled_warnings': [4267, ],
853         }],
854         [ 'enable_websockets != 1', {
855           'sources!': [
856             'websockets/websocket_frame_perftest.cc',
857           ],
858         }],
859       ],
860     },
861     {
862       'target_name': 'net_test_support',
863       'type': 'static_library',
864       'dependencies': [
865         '../base/base.gyp:base',
866         '../base/base.gyp:test_support_base',
867         '../net/tools/tld_cleanup/tld_cleanup.gyp:tld_cleanup_util',
868         '../testing/gtest.gyp:gtest',
869         '../testing/gmock.gyp:gmock',
870         '../url/url.gyp:url_lib',
871         'net',
872       ],
873       'export_dependent_settings': [
874         '../base/base.gyp:base',
875         # TODO(mmenke):  This depends on icu, figure out a way to build tests
876         #                without icu.
877         '../base/base.gyp:test_support_base',
878         '../testing/gtest.gyp:gtest',
879         '../testing/gmock.gyp:gmock',
880       ],
881       'sources': [
882         'base/capturing_net_log.cc',
883         'base/capturing_net_log.h',
884         'base/load_timing_info_test_util.cc',
885         'base/load_timing_info_test_util.h',
886         'base/mock_file_stream.cc',
887         'base/mock_file_stream.h',
888         'base/test_completion_callback.cc',
889         'base/test_completion_callback.h',
890         'base/test_data_directory.cc',
891         'base/test_data_directory.h',
892         'cert/mock_cert_verifier.cc',
893         'cert/mock_cert_verifier.h',
894         'cookies/cookie_monster_store_test.cc',
895         'cookies/cookie_monster_store_test.h',
896         'cookies/cookie_store_test_callbacks.cc',
897         'cookies/cookie_store_test_callbacks.h',
898         'cookies/cookie_store_test_helpers.cc',
899         'cookies/cookie_store_test_helpers.h',
900         'disk_cache/disk_cache_test_base.cc',
901         'disk_cache/disk_cache_test_base.h',
902         'disk_cache/disk_cache_test_util.cc',
903         'disk_cache/disk_cache_test_util.h',
904         'dns/dns_test_util.cc',
905         'dns/dns_test_util.h',
906         'dns/mock_host_resolver.cc',
907         'dns/mock_host_resolver.h',
908         'dns/mock_mdns_socket_factory.cc',
909         'dns/mock_mdns_socket_factory.h',
910         'http/http_transaction_test_util.cc',
911         'http/http_transaction_test_util.h',
912         'proxy/mock_proxy_resolver.cc',
913         'proxy/mock_proxy_resolver.h',
914         'proxy/mock_proxy_script_fetcher.cc',
915         'proxy/mock_proxy_script_fetcher.h',
916         'proxy/proxy_config_service_common_unittest.cc',
917         'proxy/proxy_config_service_common_unittest.h',
918         'socket/socket_test_util.cc',
919         'socket/socket_test_util.h',
920         'test/cert_test_util.cc',
921         'test/cert_test_util.h',
922         'test/cert_test_util_nss.cc',
923         'test/ct_test_util.cc',
924         'test/ct_test_util.h',
925         'test/embedded_test_server/embedded_test_server.cc',
926         'test/embedded_test_server/embedded_test_server.h',
927         'test/embedded_test_server/http_connection.cc',
928         'test/embedded_test_server/http_connection.h',
929         'test/embedded_test_server/http_request.cc',
930         'test/embedded_test_server/http_request.h',
931         'test/embedded_test_server/http_response.cc',
932         'test/embedded_test_server/http_response.h',
933         'test/net_test_suite.cc',
934         'test/net_test_suite.h',
935         'test/python_utils.cc',
936         'test/python_utils.h',
937         'test/spawned_test_server/base_test_server.cc',
938         'test/spawned_test_server/base_test_server.h',
939         'test/spawned_test_server/local_test_server_posix.cc',
940         'test/spawned_test_server/local_test_server_win.cc',
941         'test/spawned_test_server/local_test_server.cc',
942         'test/spawned_test_server/local_test_server.h',
943         'test/spawned_test_server/remote_test_server.cc',
944         'test/spawned_test_server/remote_test_server.h',
945         'test/spawned_test_server/spawned_test_server.h',
946         'test/spawned_test_server/spawner_communicator.cc',
947         'test/spawned_test_server/spawner_communicator.h',
948         'test/url_request/url_request_failed_job.cc',
949         'test/url_request/url_request_failed_job.h',
950         'test/url_request/url_request_mock_http_job.cc',
951         'test/url_request/url_request_mock_http_job.h',
952         'url_request/test_url_fetcher_factory.cc',
953         'url_request/test_url_fetcher_factory.h',
954         'url_request/test_url_request_interceptor.cc',
955         'url_request/test_url_request_interceptor.h',
956         'url_request/url_request_test_util.cc',
957         'url_request/url_request_test_util.h',
958       ],
959       'conditions': [
960         ['OS != "ios"', {
961           'dependencies': [
962             '../third_party/protobuf/protobuf.gyp:py_proto',
963           ],
964         }],
965         ['use_openssl == 0 and (use_nss == 1 or OS == "ios")', {
966           'conditions': [
967             [ 'desktop_linux == 1 or chromeos == 1', {
968               'dependencies': [
969                 '../build/linux/system.gyp:ssl',
970               ],
971             }, {  # desktop_linux == 0 and chromeos == 0
972               'dependencies': [
973                 '../third_party/nss/nss.gyp:nspr',
974                 '../third_party/nss/nss.gyp:nss',
975                 'third_party/nss/ssl.gyp:libssl',
976               ],
977             }],
978           ],
979         }],
980         ['os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
981           'conditions': [
982             ['use_allocator!="none"', {
983               'dependencies': [
984                 '../base/allocator/allocator.gyp:allocator',
985               ],
986             }],
987           ],
988         }],
989         ['OS != "android"', {
990           'sources!': [
991             'test/spawned_test_server/remote_test_server.cc',
992             'test/spawned_test_server/remote_test_server.h',
993             'test/spawned_test_server/spawner_communicator.cc',
994             'test/spawned_test_server/spawner_communicator.h',
995           ],
996         }],
997         [ 'use_v8_in_net==1', {
998             'dependencies': [
999               'net_with_v8',
1000             ],
1001           },
1002         ],
1003         [ 'enable_mdns != 1', {
1004             'sources!' : [
1005               'dns/mock_mdns_socket_factory.cc',
1006               'dns/mock_mdns_socket_factory.h'
1007             ]
1008         }],
1009         [ 'use_nss != 1', {
1010             'sources!': [
1011               'test/cert_test_util_nss.cc',
1012             ],
1013         }],
1014       ],
1015       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1016       'msvs_disabled_warnings': [4267, ],
1017     },
1018     {
1019       'target_name': 'net_resources',
1020       'type': 'none',
1021       'variables': {
1022         'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/net',
1023       },
1024       'actions': [
1025         {
1026           'action_name': 'net_resources',
1027           'variables': {
1028             'grit_grd_file': 'base/net_resources.grd',
1029           },
1030           'includes': [ '../build/grit_action.gypi' ],
1031         },
1032       ],
1033     },
1034     {
1035       'target_name': 'net_extras',
1036       'type': 'static_library',
1037       'variables': { 'enable_wexit_time_destructors': 1, },
1038       'dependencies': [
1039         '../base/base.gyp:base',
1040         '../sql/sql.gyp:sql',
1041         'net',
1042       ],
1043       'sources': [
1044         '<@(net_extras_sources)',
1045       ],
1046     },
1047     {
1048       'target_name': 'http_server',
1049       'type': 'static_library',
1050       'variables': { 'enable_wexit_time_destructors': 1, },
1051       'dependencies': [
1052         '../base/base.gyp:base',
1053         'net',
1054       ],
1055       'sources': [
1056         'server/http_connection.cc',
1057         'server/http_connection.h',
1058         'server/http_server.cc',
1059         'server/http_server.h',
1060         'server/http_server_request_info.cc',
1061         'server/http_server_request_info.h',
1062         'server/http_server_response_info.cc',
1063         'server/http_server_response_info.h',
1064         'server/web_socket.cc',
1065         'server/web_socket.h',
1066       ],
1067       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1068       'msvs_disabled_warnings': [4267, ],
1069     },
1070     {
1071       'target_name': 'balsa',
1072       'type': 'static_library',
1073       'dependencies': [
1074         '../base/base.gyp:base',
1075         'net',
1076       ],
1077       'sources': [
1078         'tools/balsa/balsa_enums.h',
1079         'tools/balsa/balsa_frame.cc',
1080         'tools/balsa/balsa_frame.h',
1081         'tools/balsa/balsa_headers.cc',
1082         'tools/balsa/balsa_headers.h',
1083         'tools/balsa/balsa_headers_token_utils.cc',
1084         'tools/balsa/balsa_headers_token_utils.h',
1085         'tools/balsa/balsa_visitor_interface.h',
1086         'tools/balsa/http_message_constants.cc',
1087         'tools/balsa/http_message_constants.h',
1088         'tools/balsa/noop_balsa_visitor.h',
1089         'tools/balsa/simple_buffer.cc',
1090         'tools/balsa/simple_buffer.h',
1091         'tools/balsa/split.cc',
1092         'tools/balsa/split.h',
1093         'tools/balsa/string_piece_utils.h',
1094         'tools/quic/spdy_utils.cc',
1095         'tools/quic/spdy_utils.h',
1096       ],
1097     },
1098     {
1099       'target_name': 'dump_cache',
1100       'type': 'executable',
1101       'dependencies': [
1102         '../base/base.gyp:base',
1103         'net',
1104         'net_test_support',
1105       ],
1106       'sources': [
1107         'tools/dump_cache/cache_dumper.cc',
1108         'tools/dump_cache/cache_dumper.h',
1109         'tools/dump_cache/dump_cache.cc',
1110         'tools/dump_cache/dump_files.cc',
1111         'tools/dump_cache/dump_files.h',
1112         'tools/dump_cache/simple_cache_dumper.cc',
1113         'tools/dump_cache/simple_cache_dumper.h',
1114         'tools/dump_cache/url_to_filename_encoder.cc',
1115         'tools/dump_cache/url_to_filename_encoder.h',
1116         'tools/dump_cache/url_utilities.h',
1117         'tools/dump_cache/url_utilities.cc',
1118       ],
1119       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1120       'msvs_disabled_warnings': [4267, ],
1121     },
1122     {
1123       # This is a temporary target which will be merged into 'net' once the
1124       # dependency on balsa is eliminated and the classes are actually used.
1125       'target_name': 'quic_tools',
1126       'type': 'static_library',
1127       'dependencies': [
1128         '../base/base.gyp:base',
1129         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
1130         '../url/url.gyp:url_lib',
1131         'net',
1132       ],
1133       'sources': [
1134         'quic/quic_dispatcher.cc',
1135         'quic/quic_dispatcher.h',
1136         'quic/quic_in_memory_cache.cc',
1137         'quic/quic_in_memory_cache.h',
1138         'quic/quic_per_connection_packet_writer.cc',
1139         'quic/quic_per_connection_packet_writer.h',
1140         'quic/quic_server.cc',
1141         'quic/quic_server.h',
1142         'quic/quic_server_packet_writer.cc',
1143         'quic/quic_server_packet_writer.h',
1144         'quic/quic_server_session.cc',
1145         'quic/quic_server_session.h',
1146         'quic/quic_spdy_server_stream.cc',
1147         'quic/quic_spdy_server_stream.h',
1148         'quic/quic_time_wait_list_manager.cc',
1149         'quic/quic_time_wait_list_manager.h',
1150       ],
1151     },
1152   ],
1153   'conditions': [
1154     ['use_v8_in_net == 1', {
1155       'targets': [
1156         {
1157           'target_name': 'net_with_v8',
1158           'type': '<(component)',
1159           'variables': { 'enable_wexit_time_destructors': 1, },
1160           'dependencies': [
1161             '../base/base.gyp:base',
1162             '../gin/gin.gyp:gin',
1163             '../url/url.gyp:url_lib',
1164             '../v8/tools/gyp/v8.gyp:v8',
1165             'net'
1166           ],
1167           'defines': [
1168             'NET_IMPLEMENTATION',
1169           ],
1170           'sources': [
1171             'proxy/proxy_resolver_v8.cc',
1172             'proxy/proxy_resolver_v8.h',
1173             'proxy/proxy_resolver_v8_tracing.cc',
1174             'proxy/proxy_resolver_v8_tracing.h',
1175             'proxy/proxy_service_v8.cc',
1176             'proxy/proxy_service_v8.h',
1177           ],
1178           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1179           'msvs_disabled_warnings': [4267, ],
1180         },
1181       ],
1182     }],
1183     ['OS != "ios" and OS != "android"', {
1184       'targets': [
1185         # iOS doesn't have the concept of simple executables, these targets
1186         # can't be compiled on the platform.
1187         {
1188           'target_name': 'crash_cache',
1189           'type': 'executable',
1190           'dependencies': [
1191             '../base/base.gyp:base',
1192             'net',
1193             'net_test_support',
1194           ],
1195           'sources': [
1196             'tools/crash_cache/crash_cache.cc',
1197           ],
1198           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1199           'msvs_disabled_warnings': [4267, ],
1200         },
1201         {
1202           'target_name': 'crl_set_dump',
1203           'type': 'executable',
1204           'dependencies': [
1205             '../base/base.gyp:base',
1206             'net',
1207           ],
1208           'sources': [
1209             'tools/crl_set_dump/crl_set_dump.cc',
1210           ],
1211           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1212           'msvs_disabled_warnings': [4267, ],
1213         },
1214         {
1215           'target_name': 'dns_fuzz_stub',
1216           'type': 'executable',
1217           'dependencies': [
1218             '../base/base.gyp:base',
1219             'net',
1220           ],
1221           'sources': [
1222             'tools/dns_fuzz_stub/dns_fuzz_stub.cc',
1223           ],
1224           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1225           'msvs_disabled_warnings': [4267, ],
1226         },
1227         {
1228           'target_name': 'gdig',
1229           'type': 'executable',
1230           'dependencies': [
1231             '../base/base.gyp:base',
1232             'net',
1233           ],
1234           'sources': [
1235             'tools/gdig/file_net_log.cc',
1236             'tools/gdig/gdig.cc',
1237           ],
1238         },
1239         {
1240           'target_name': 'get_server_time',
1241           'type': 'executable',
1242           'dependencies': [
1243             '../base/base.gyp:base',
1244             '../base/base.gyp:base_i18n',
1245             '../url/url.gyp:url_lib',
1246             'net',
1247           ],
1248           'sources': [
1249             'tools/get_server_time/get_server_time.cc',
1250           ],
1251           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1252           'msvs_disabled_warnings': [4267, ],
1253         },
1254         {
1255           'target_name': 'hpack_example_generator',
1256           'type': 'executable',
1257           'dependencies': [
1258             '../base/base.gyp:base',
1259             'net',
1260           ],
1261           'sources': [
1262             'spdy/fuzzing/hpack_example_generator.cc',
1263           ],
1264           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1265           'msvs_disabled_warnings': [4267, ],
1266         },
1267         {
1268           'target_name': 'hpack_fuzz_mutator',
1269           'type': 'executable',
1270           'dependencies': [
1271             '../base/base.gyp:base',
1272             'net',
1273           ],
1274           'sources': [
1275             'spdy/fuzzing/hpack_fuzz_mutator.cc',
1276           ],
1277           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1278           'msvs_disabled_warnings': [4267, ],
1279         },
1280         {
1281           'target_name': 'hpack_fuzz_wrapper',
1282           'type': 'executable',
1283           'dependencies': [
1284             '../base/base.gyp:base',
1285             'net',
1286           ],
1287           'sources': [
1288             'spdy/fuzzing/hpack_fuzz_wrapper.cc',
1289           ],
1290           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1291           'msvs_disabled_warnings': [4267, ],
1292         },
1293         {
1294           'target_name': 'net_watcher',
1295           'type': 'executable',
1296           'dependencies': [
1297             '../base/base.gyp:base',
1298             'net',
1299             'net_with_v8',
1300           ],
1301           'conditions': [
1302             [ 'use_glib == 1', {
1303                 'dependencies': [
1304                   '../build/linux/system.gyp:gconf',
1305                   '../build/linux/system.gyp:gio',
1306                 ],
1307               },
1308             ],
1309           ],
1310           'sources': [
1311             'tools/net_watcher/net_watcher.cc',
1312           ],
1313         },
1314         {
1315           'target_name': 'run_testserver',
1316           'type': 'executable',
1317           'dependencies': [
1318             '../base/base.gyp:base',
1319             '../base/base.gyp:test_support_base',
1320             '../testing/gtest.gyp:gtest',
1321             'net_test_support',
1322           ],
1323           'sources': [
1324             'tools/testserver/run_testserver.cc',
1325           ],
1326         },
1327         {
1328           'target_name': 'stress_cache',
1329           'type': 'executable',
1330           'dependencies': [
1331             '../base/base.gyp:base',
1332             'net',
1333             'net_test_support',
1334           ],
1335           'sources': [
1336             'disk_cache/blockfile/stress_cache.cc',
1337           ],
1338           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1339           'msvs_disabled_warnings': [4267, ],
1340         },
1341         {
1342           'target_name': 'tld_cleanup',
1343           'type': 'executable',
1344           'dependencies': [
1345             '../base/base.gyp:base',
1346             '../base/base.gyp:base_i18n',
1347             '../net/tools/tld_cleanup/tld_cleanup.gyp:tld_cleanup_util',
1348           ],
1349           'sources': [
1350             'tools/tld_cleanup/tld_cleanup.cc',
1351           ],
1352           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1353           'msvs_disabled_warnings': [4267, ],
1354         },
1355       ],
1356     }],
1357     ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
1358       'targets': [
1359         {
1360           'target_name': 'epoll_server',
1361           'type': 'static_library',
1362           'dependencies': [
1363             '../base/base.gyp:base',
1364             'net',
1365           ],
1366           'sources': [
1367             'tools/epoll_server/epoll_server.cc',
1368             'tools/epoll_server/epoll_server.h',
1369           ],
1370         },
1371         {
1372           'target_name': 'flip_in_mem_edsm_server_base',
1373           'type': 'static_library',
1374           'cflags': [
1375             '-Wno-deprecated',
1376           ],
1377           'dependencies': [
1378             '../base/base.gyp:base',
1379             '../third_party/boringssl/boringssl.gyp:boringssl',
1380             'balsa',
1381             'epoll_server',
1382             'net',
1383           ],
1384           'sources': [
1385             'tools/dump_cache/url_to_filename_encoder.cc',
1386             'tools/dump_cache/url_to_filename_encoder.h',
1387             'tools/dump_cache/url_utilities.h',
1388             'tools/dump_cache/url_utilities.cc',
1389             'tools/flip_server/acceptor_thread.h',
1390             'tools/flip_server/acceptor_thread.cc',
1391             'tools/flip_server/create_listener.cc',
1392             'tools/flip_server/create_listener.h',
1393             'tools/flip_server/constants.h',
1394             'tools/flip_server/flip_config.cc',
1395             'tools/flip_server/flip_config.h',
1396             'tools/flip_server/http_interface.cc',
1397             'tools/flip_server/http_interface.h',
1398             'tools/flip_server/loadtime_measurement.h',
1399             'tools/flip_server/mem_cache.h',
1400             'tools/flip_server/mem_cache.cc',
1401             'tools/flip_server/output_ordering.cc',
1402             'tools/flip_server/output_ordering.h',
1403             'tools/flip_server/ring_buffer.cc',
1404             'tools/flip_server/ring_buffer.h',
1405             'tools/flip_server/sm_connection.cc',
1406             'tools/flip_server/sm_connection.h',
1407             'tools/flip_server/sm_interface.h',
1408             'tools/flip_server/spdy_ssl.cc',
1409             'tools/flip_server/spdy_ssl.h',
1410             'tools/flip_server/spdy_interface.cc',
1411             'tools/flip_server/spdy_interface.h',
1412             'tools/flip_server/spdy_util.cc',
1413             'tools/flip_server/spdy_util.h',
1414             'tools/flip_server/streamer_interface.cc',
1415             'tools/flip_server/streamer_interface.h',
1416           ],
1417         },
1418         {
1419           'target_name': 'flip_in_mem_edsm_server_unittests',
1420           'type': 'executable',
1421           'dependencies': [
1422               '../testing/gtest.gyp:gtest',
1423               '../testing/gmock.gyp:gmock',
1424               '../third_party/boringssl/boringssl.gyp:boringssl',
1425               'flip_in_mem_edsm_server_base',
1426               'net',
1427               'net_test_support',
1428           ],
1429           'sources': [
1430             'tools/flip_server/flip_test_utils.cc',
1431             'tools/flip_server/flip_test_utils.h',
1432             'tools/flip_server/http_interface_test.cc',
1433             'tools/flip_server/mem_cache_test.cc',
1434             'tools/flip_server/run_all_tests.cc',
1435             'tools/flip_server/spdy_interface_test.cc',
1436           ],
1437         },
1438         {
1439           'target_name': 'flip_in_mem_edsm_server',
1440           'type': 'executable',
1441           'cflags': [
1442             '-Wno-deprecated',
1443           ],
1444           'dependencies': [
1445             '../base/base.gyp:base',
1446             'flip_in_mem_edsm_server_base',
1447             'net',
1448           ],
1449           'sources': [
1450             'tools/flip_server/flip_in_mem_edsm_server.cc',
1451           ],
1452         },
1453         {
1454           'target_name': 'quic_base',
1455           'type': 'static_library',
1456           'dependencies': [
1457             '../base/base.gyp:base',
1458             '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
1459             '../url/url.gyp:url_lib',
1460             'balsa',
1461             'epoll_server',
1462             'net',
1463           ],
1464           'sources': [
1465             'tools/quic/quic_client.cc',
1466             'tools/quic/quic_client.h',
1467             'tools/quic/quic_client_session.cc',
1468             'tools/quic/quic_client_session.h',
1469             'tools/quic/quic_default_packet_writer.cc',
1470             'tools/quic/quic_default_packet_writer.h',
1471             'tools/quic/quic_dispatcher.h',
1472             'tools/quic/quic_dispatcher.cc',
1473             'tools/quic/quic_epoll_clock.cc',
1474             'tools/quic/quic_epoll_clock.h',
1475             'tools/quic/quic_epoll_connection_helper.cc',
1476             'tools/quic/quic_epoll_connection_helper.h',
1477             'tools/quic/quic_in_memory_cache.cc',
1478             'tools/quic/quic_in_memory_cache.h',
1479             'tools/quic/quic_packet_writer_wrapper.cc',
1480             'tools/quic/quic_packet_writer_wrapper.h',
1481             'tools/quic/quic_per_connection_packet_writer.cc',
1482             'tools/quic/quic_per_connection_packet_writer.h',
1483             'tools/quic/quic_server.cc',
1484             'tools/quic/quic_server.h',
1485             'tools/quic/quic_server_session.cc',
1486             'tools/quic/quic_server_session.h',
1487             'tools/quic/quic_socket_utils.cc',
1488             'tools/quic/quic_socket_utils.h',
1489             'tools/quic/quic_spdy_client_stream.cc',
1490             'tools/quic/quic_spdy_client_stream.h',
1491             'tools/quic/quic_spdy_server_stream.cc',
1492             'tools/quic/quic_spdy_server_stream.h',
1493             'tools/quic/quic_time_wait_list_manager.h',
1494             'tools/quic/quic_time_wait_list_manager.cc',
1495           ],
1496         },
1497         {
1498           'target_name': 'quic_client',
1499           'type': 'executable',
1500           'dependencies': [
1501             '../base/base.gyp:base',
1502             'net',
1503             'quic_base',
1504           ],
1505           'sources': [
1506             'tools/quic/quic_client_bin.cc',
1507           ],
1508         },
1509         {
1510           'target_name': 'quic_server',
1511           'type': 'executable',
1512           'dependencies': [
1513             '../base/base.gyp:base',
1514             'net',
1515             'quic_tools',
1516           ],
1517           'sources': [
1518             'quic/quic_server_bin.cc',
1519           ],
1520         },
1521       ]
1522     }],
1523     ['OS=="android"', {
1524       'targets': [
1525         {
1526           'target_name': 'net_jni_headers',
1527           'type': 'none',
1528           'sources': [
1529             'android/java/src/org/chromium/net/AndroidCertVerifyResult.java',
1530             'android/java/src/org/chromium/net/AndroidKeyStore.java',
1531             'android/java/src/org/chromium/net/AndroidNetworkLibrary.java',
1532             'android/java/src/org/chromium/net/AndroidPrivateKey.java',
1533             'android/java/src/org/chromium/net/GURLUtils.java',
1534             'android/java/src/org/chromium/net/NetworkChangeNotifier.java',
1535             'android/java/src/org/chromium/net/ProxyChangeListener.java',
1536             'android/java/src/org/chromium/net/X509Util.java',
1537           ],
1538           'variables': {
1539             'jni_gen_package': 'net',
1540           },
1541           'includes': [ '../build/jni_generator.gypi' ],
1542
1543           'conditions': [
1544             ['use_icu_alternatives_on_android==1', {
1545               'sources': [
1546                 'android/java/src/org/chromium/net/NetStringUtil.java',
1547               ],
1548             }],
1549           ],
1550         },
1551         {
1552           'target_name': 'net_test_jni_headers',
1553           'type': 'none',
1554           'sources': [
1555             'android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java',
1556           ],
1557           'variables': {
1558             'jni_gen_package': 'net',
1559           },
1560           'includes': [ '../build/jni_generator.gypi' ],
1561         },
1562         {
1563           'target_name': 'net_java',
1564           'type': 'none',
1565           'variables': {
1566             'java_in_dir': '../net/android/java',
1567           },
1568           'dependencies': [
1569             '../base/base.gyp:base',
1570             'cert_verify_status_android_java',
1571             'certificate_mime_types_java',
1572             'net_errors_java',
1573             'private_key_types_java',
1574             'remote_android_keystore_aidl',
1575           ],
1576           'includes': [ '../build/java.gypi' ],
1577         },
1578         {
1579           # Processes the interface files for communication with an Android KeyStore
1580           # running in a separate process.
1581           'target_name': 'remote_android_keystore_aidl',
1582           'type': 'none',
1583           'variables': {
1584             'aidl_interface_file': '../net/android/java/src/org/chromium/net/IRemoteAndroidKeyStoreInterface.aidl',
1585           },
1586           'sources': [
1587             '../net/android/java/src/org/chromium/net/IRemoteAndroidKeyStore.aidl',
1588             '../net/android/java/src/org/chromium/net/IRemoteAndroidKeyStoreCallbacks.aidl',
1589           ],
1590           'includes': [ '../build/java_aidl.gypi' ],
1591         },
1592         {
1593           'target_name': 'net_java_test_support',
1594           'type': 'none',
1595           'variables': {
1596             'java_in_dir': '../net/test/android/javatests',
1597           },
1598           'includes': [ '../build/java.gypi' ],
1599         },
1600         {
1601           'target_name': 'net_javatests',
1602           'type': 'none',
1603           'variables': {
1604             'java_in_dir': '../net/android/javatests',
1605           },
1606           'dependencies': [
1607             '../base/base.gyp:base',
1608             '../base/base.gyp:base_java_test_support',
1609             'net_java',
1610           ],
1611           'includes': [ '../build/java.gypi' ],
1612         },
1613         {
1614           'target_name': 'net_errors_java',
1615           'type': 'none',
1616           'sources': [
1617             'android/java/NetError.template',
1618           ],
1619           'variables': {
1620             'package_name': 'org/chromium/net',
1621             'template_deps': ['base/net_error_list.h'],
1622           },
1623           'includes': [ '../build/android/java_cpp_template.gypi' ],
1624         },
1625         {
1626           'target_name': 'certificate_mime_types_java',
1627           'type': 'none',
1628           'variables': {
1629             'source_file': 'base/mime_util.h',
1630           },
1631           'includes': [ '../build/android/java_cpp_enum.gypi' ],
1632         },
1633         {
1634           'target_name': 'cert_verify_status_android_java',
1635           'type': 'none',
1636           'variables': {
1637             'source_file': 'android/cert_verify_result_android.h',
1638           },
1639           'includes': [ '../build/android/java_cpp_enum.gypi' ],
1640         },
1641         {
1642           'target_name': 'private_key_types_java',
1643           'type': 'none',
1644           'variables': {
1645             'source_file': 'android/keystore.h',
1646           },
1647           'includes': [ '../build/android/java_cpp_enum.gypi' ],
1648         },
1649         {
1650           'target_name': 'net_unittests_apk',
1651           'type': 'none',
1652           'dependencies': [
1653             'net_java',
1654             'net_javatests',
1655             'net_unittests',
1656           ],
1657           'variables': {
1658             'test_suite_name': 'net_unittests',
1659             'conditions': [
1660               ['v8_use_external_startup_data==1', {
1661                 'additional_input_paths': [
1662                   '<(PRODUCT_DIR)/natives_blob.bin',
1663                   '<(PRODUCT_DIR)/snapshot_blob.bin',
1664                 ],
1665                 'copies': [
1666                   {
1667                   'destination': '<(PRODUCT_DIR)/net_unittests_apk/assets',
1668                     'files': [
1669                       '<(PRODUCT_DIR)/natives_blob.bin',
1670                       '<(PRODUCT_DIR)/snapshot_blob.bin',
1671                     ],
1672                   },
1673                 ],
1674               }],
1675             ],
1676           },
1677           'includes': [ '../build/apk_test.gypi' ],
1678         },
1679       ],
1680     }],
1681     ['OS == "android" or OS == "linux"', {
1682       'targets': [
1683         {
1684           'target_name': 'disk_cache_memory_test',
1685           'type': 'executable',
1686           'dependencies': [
1687             '../base/base.gyp:base',
1688             'net',
1689           ],
1690           'sources': [
1691             'tools/disk_cache_memory_test/disk_cache_memory_test.cc',
1692           ],
1693         },
1694       ],
1695     }],
1696     ['test_isolation_mode != "noop"', {
1697       'targets': [
1698         {
1699           'target_name': 'net_unittests_run',
1700           'type': 'none',
1701           'dependencies': [
1702             'net_unittests',
1703           ],
1704           'includes': [
1705             '../build/isolate.gypi',
1706           ],
1707           'sources': [
1708             'net_unittests.isolate',
1709           ],
1710         },
1711       ],
1712     }],
1713   ],
1714 }