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.
8 'linux_link_kerberos%': 0,
10 ['chromeos==1 or embedded==1 or OS=="ios"', {
11 # Disable Kerberos on ChromeOS and iOS, at least for now.
12 # It needs configuration (krb5.conf and so on).
14 }, { # chromeos == 0 and embedded==0 and OS!="ios"
17 ['OS=="android" and target_arch != "ia32"', {
18 # The way the cache uses mmap() is inefficient on some Android devices.
19 # If this flag is set, we hackily avoid using mmap() in the disk cache.
20 # We are pretty confident that mmap-ing the index would not hurt any
21 # existing x86 android devices, but we cannot be so sure about the
22 # variety of ARM devices. So enable it for x86 only for now.
23 'posix_avoid_mmap%': 1,
25 'posix_avoid_mmap%': 0,
28 # Websockets and socket stream are not used on iOS.
29 'enable_websockets%': 0,
30 # iOS does not use V8.
32 'enable_built_in_dns%': 0,
34 'enable_websockets%': 1,
36 'enable_built_in_dns%': 1,
41 '../build/win_precompile.gypi',
46 'target_name': 'net_derived_sources',
49 'base/registry_controlled_domains/effective_tld_names.gperf',
50 'base/registry_controlled_domains/effective_tld_names_unittest1.gperf',
51 'base/registry_controlled_domains/effective_tld_names_unittest2.gperf',
52 'base/registry_controlled_domains/effective_tld_names_unittest3.gperf',
53 'base/registry_controlled_domains/effective_tld_names_unittest4.gperf',
54 'base/registry_controlled_domains/effective_tld_names_unittest5.gperf',
55 'base/registry_controlled_domains/effective_tld_names_unittest6.gperf',
62 '<(SHARED_INTERMEDIATE_DIR)/net/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT)-inc.cc',
65 'tools/tld_cleanup/make_dafsa.py',
69 'tools/tld_cleanup/make_dafsa.py',
71 '<(SHARED_INTERMEDIATE_DIR)/net/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT)-inc.cc',
75 'direct_dependent_settings': {
77 '<(SHARED_INTERMEDIATE_DIR)'
82 # Protobuf compiler / generator for QUIC crypto protocol buffer.
83 # GN version: //net/quic/proto
84 'target_name': 'net_quic_proto',
85 'type': 'static_library',
87 'quic/proto/cached_network_parameters.proto',
88 'quic/proto/source_address_token.proto',
91 'enable_wexit_time_destructors': 1,
92 'proto_in_dir': 'quic/proto',
93 'proto_out_dir': 'net/quic/proto',
94 'cc_generator_options': 'dllexport_decl=NET_EXPORT_PRIVATE:',
95 'cc_include': 'net/base/net_export.h',
98 '../build/protoc.gypi',
101 'NET_IMPLEMENTATION',
106 'target_name': 'net',
108 '../base/base.gyp:base_i18n',
109 '../third_party/icu/icu.gyp:icui18n',
110 '../third_party/icu/icu.gyp:icuuc',
111 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
112 '../url/url.gyp:url_lib',
116 'base/filename_util_icu.cc',
117 'base/net_string_util_icu.cc',
118 'base/net_util_icu.cc',
120 'includes': [ 'net_common.gypi' ],
123 # GN version: //net:net_unittests
124 'target_name': 'net_unittests',
125 'type': '<(gtest_target_type)',
127 '../base/base.gyp:base',
128 '../base/base.gyp:base_i18n',
129 '../base/base.gyp:base_prefs_test_support',
130 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
131 '../crypto/crypto.gyp:crypto',
132 '../crypto/crypto.gyp:crypto_test_support',
133 '../testing/gmock.gyp:gmock',
134 '../testing/gtest.gyp:gtest',
135 '../third_party/zlib/zlib.gyp:zlib',
136 '../url/url.gyp:url_lib',
141 'net_derived_sources',
147 '<@(net_test_sources)',
150 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
154 'flip_in_mem_edsm_server_base',
157 '<@(net_linux_test_sources)',
160 ['OS == "mac" or OS == "ios"', {
162 '<@(net_base_test_mac_ios_sources)',
167 'proxy/proxy_config_service_linux_unittest.cc',
170 [ 'OS == "android"', {
172 # See bug http://crbug.com/344533.
173 'disk_cache/blockfile/index_table_v3_unittest.cc',
179 [ 'use_nss_certs != 1', {
181 'cert/nss_cert_database_unittest.cc',
182 'cert/nss_cert_database_chromeos_unittest.cc',
183 'cert/nss_profile_filter_chromeos_unittest.cc',
184 'ssl/client_cert_store_nss_unittest.cc',
187 [ 'use_openssl == 1', {
188 # Avoid compiling/linking with the system library.
190 '../third_party/boringssl/boringssl.gyp:boringssl',
193 [ 'use_nss_certs == 1 or OS == "ios" or use_openssl == 0', {
195 [ 'desktop_linux == 1 or chromeos == 1', {
197 '../build/linux/system.gyp:ssl',
199 }, { # desktop_linux == 0 and chromeos == 0
201 '../third_party/nss/nss.gyp:nspr',
202 '../third_party/nss/nss.gyp:nss',
203 'third_party/nss/ssl.gyp:libssl',
208 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
210 ['use_allocator!="none"', {
212 '../base/allocator/allocator.gyp:allocator',
217 [ 'use_kerberos==1', {
222 [ 'use_kerberos==0 or OS == "android"', {
223 # These are excluded on Android, because the actual Kerberos support,
224 # which these test, is in a separate app on Android.
226 'http/http_auth_gssapi_posix_unittest.cc',
227 'http/mock_gssapi_library_posix.cc',
228 'http/mock_gssapi_library_posix.h',
231 [ 'use_kerberos==0', {
233 'http/http_auth_handler_negotiate_unittest.cc',
236 [ 'use_openssl == 1 or (desktop_linux == 0 and chromeos == 0 and OS != "ios")', {
237 # Only include this test when on Posix and using NSS for
238 # cert verification or on iOS (which also uses NSS for certs).
240 'cert_net/nss_ocsp_unittest.cc',
243 [ 'use_openssl==1', {
244 # When building for OpenSSL, we need to exclude NSS specific tests
245 # or functionality not supported by OpenSSL yet.
246 # TODO(bulach): Add equivalent tests when the underlying
247 # functionality is ported to OpenSSL.
249 'cert/x509_util_nss_unittest.cc',
250 'quic/test_tools/crypto_test_utils_nss.cc',
252 }, { # else !use_openssl: remove the unneeded files and pull in NSS.
254 'cert/x509_util_openssl_unittest.cc',
255 'quic/test_tools/crypto_test_utils_openssl.cc',
256 'socket/ssl_client_socket_openssl_unittest.cc',
257 'ssl/ssl_client_session_cache_openssl_unittest.cc',
261 [ 'use_openssl_certs == 0', {
263 'ssl/openssl_client_key_store_unittest.cc',
266 [ 'enable_websockets != 1', {
268 ['exclude', '^websockets/'],
269 ['exclude', '^server/'],
275 ['disable_file_support==1', {
277 'base/directory_lister_unittest.cc',
278 'url_request/url_request_file_job_unittest.cc',
281 [ 'disable_ftp_support==1', {
283 ['exclude', '^ftp/'],
286 'url_request/url_request_ftp_job_unittest.cc',
290 [ 'enable_built_in_dns!=1', {
292 'dns/address_sorter_posix_unittest.cc',
293 'dns/address_sorter_unittest.cc',
297 [ 'use_v8_in_net==1', {
301 }, { # else: !use_v8_in_net
303 'proxy/proxy_resolver_v8_tracing_unittest.cc',
304 'proxy/proxy_resolver_v8_tracing_wrapper_unittest.cc',
305 'proxy/proxy_resolver_v8_unittest.cc',
310 [ 'use_v8_in_net==1 and OS != "android"', {
313 'net_browser_services',
314 'net_utility_services',
315 '../third_party/mojo/mojo_edk.gyp:mojo_system_impl',
319 'dns/host_resolver_mojo_unittest.cc',
320 'dns/mojo_host_resolver_impl_unittest.cc',
321 'proxy/mojo_proxy_resolver_factory_impl_unittest.cc',
322 'proxy/mojo_proxy_resolver_impl_unittest.cc',
323 'proxy/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc',
324 'proxy/proxy_resolver_factory_mojo_unittest.cc',
325 'proxy/proxy_service_mojo_unittest.cc',
330 [ 'enable_mdns != 1', {
332 'dns/mdns_cache_unittest.cc',
333 'dns/mdns_client_unittest.cc',
334 'dns/mdns_query_unittest.cc',
335 'dns/record_parsed_unittest.cc',
336 'dns/record_rdata_unittest.cc',
341 'dns/dns_config_service_posix_unittest.cc',
342 'http/http_auth_gssapi_posix_unittest.cc',
344 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
345 'msvs_disabled_warnings': [4267, ],
347 [ 'icu_use_data_file_flag == 0', {
348 # This is needed to trigger the dll copy step on windows.
349 # TODO(mark): Specifying this here shouldn't be necessary.
351 '../third_party/icu/icu.gyp:icudata',
360 'action_name': 'copy_test_data',
363 'data/ssl/certificates/',
365 'data/url_request_unittest/',
366 'data/verify_name_match_unittest/names/',
367 'data/parse_certificate_unittest/',
369 'test_data_prefix': 'net',
371 'includes': [ '../build/copy_test_data_ios.gypi' ],
375 # TODO(droger): The following tests are disabled because the
376 # implementation is missing or incomplete.
377 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS.
378 'base/keygen_handler_unittest.cc',
379 'disk_cache/backend_unittest.cc',
380 'disk_cache/blockfile/block_files_unittest.cc',
381 # Need to read input data files.
382 'filter/gzip_filter_unittest.cc',
384 "cert_net/cert_net_fetcher_impl_unittest.cc",
385 'proxy/proxy_script_fetcher_impl_unittest.cc',
386 'socket/ssl_client_socket_unittest.cc',
387 'socket/ssl_server_socket_unittest.cc',
388 'spdy/fuzzing/hpack_fuzz_util_test.cc',
389 # Needs GetAppOutput().
390 'test/python_utils_unittest.cc',
391 'url_request/url_fetcher_impl_unittest.cc',
392 'url_request/url_request_context_builder_unittest.cc',
394 # The following tests are disabled because they don't apply to
396 # OS is not "linux" or "freebsd" or "openbsd".
397 'socket/unix_domain_client_socket_posix_unittest.cc',
398 'socket/unix_domain_server_socket_posix_unittest.cc',
400 # See bug http://crbug.com/344533.
401 'disk_cache/blockfile/index_table_v3_unittest.cc',
404 ['OS == "android"', {
405 # TODO(mmenke): This depends on test_support_base, which depends on
406 # icu. Figure out a way to remove that dependency.
408 '../testing/android/native_test.gyp:native_test_native_code',
411 ['use_v8_in_net==1 and v8_use_external_startup_data==1', {
413 '../gin/gin.gyp:gin',
417 'target_conditions': [
418 # These source files are excluded by default platform rules, but they
419 # are needed in specific cases on other platforms. Re-including them can
420 # only be done in target_conditions as it is evaluated after the
422 ['OS == "android"', {
424 ['include', '^base/address_tracker_linux_unittest\\.cc$'],
429 ['include', '^base/mac/url_conversions_unittest\\.mm$'],
435 'target_name': 'net_perftests',
436 'type': 'executable',
438 '../base/base.gyp:base',
439 '../base/base.gyp:base_i18n',
440 '../base/base.gyp:test_support_perf',
441 '../testing/gtest.gyp:gtest',
442 '../url/url.gyp:url_lib',
448 'base/mime_sniffer_perftest.cc',
449 'cookies/cookie_monster_perftest.cc',
450 'disk_cache/blockfile/disk_cache_perftest.cc',
451 'extras/sqlite/sqlite_persistent_cookie_store_perftest.cc',
452 'proxy/proxy_resolver_perftest.cc',
453 'udp/udp_socket_perftest.cc',
454 'websockets/websocket_frame_perftest.cc',
457 [ 'use_v8_in_net==1', {
461 }, { # else: !use_v8_in_net
463 'proxy/proxy_resolver_perftest.cc',
469 [ 'icu_use_data_file_flag == 0', {
470 # This is needed to trigger the dll copy step on windows.
471 # TODO(mark): Specifying this here shouldn't be necessary.
473 '../third_party/icu/icu.gyp:icudata',
477 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
478 'msvs_disabled_warnings': [4267, ],
480 [ 'enable_websockets != 1', {
482 'websockets/websocket_frame_perftest.cc',
488 'target_name': 'net_test_support',
489 'type': 'static_library',
491 '../base/base.gyp:base',
492 '../base/base.gyp:test_support_base',
493 '../crypto/crypto.gyp:crypto',
494 '../net/tools/tld_cleanup/tld_cleanup.gyp:tld_cleanup_util',
495 '../testing/gtest.gyp:gtest',
496 '../testing/gmock.gyp:gmock',
497 '../url/url.gyp:url_lib',
500 'export_dependent_settings': [
501 '../base/base.gyp:base',
502 # TODO(mmenke): This depends on icu, figure out a way to build tests
504 '../base/base.gyp:test_support_base',
505 '../crypto/crypto.gyp:crypto',
506 '../testing/gtest.gyp:gtest',
507 '../testing/gmock.gyp:gmock',
510 'base/load_timing_info_test_util.cc',
511 'base/load_timing_info_test_util.h',
512 'base/mock_file_stream.cc',
513 'base/mock_file_stream.h',
514 'base/test_completion_callback.cc',
515 'base/test_completion_callback.h',
516 'base/test_data_directory.cc',
517 'base/test_data_directory.h',
518 'cert/mock_cert_verifier.cc',
519 'cert/mock_cert_verifier.h',
520 'cookies/cookie_monster_store_test.cc',
521 'cookies/cookie_monster_store_test.h',
522 'cookies/cookie_store_test_callbacks.cc',
523 'cookies/cookie_store_test_callbacks.h',
524 'cookies/cookie_store_test_helpers.cc',
525 'cookies/cookie_store_test_helpers.h',
526 'disk_cache/disk_cache_test_base.cc',
527 'disk_cache/disk_cache_test_base.h',
528 'disk_cache/disk_cache_test_util.cc',
529 'disk_cache/disk_cache_test_util.h',
530 'dns/dns_test_util.cc',
531 'dns/dns_test_util.h',
532 'dns/mock_host_resolver.cc',
533 'dns/mock_host_resolver.h',
534 'dns/mock_mdns_socket_factory.cc',
535 'dns/mock_mdns_socket_factory.h',
536 'http/http_transaction_test_util.cc',
537 'http/http_transaction_test_util.h',
538 'log/test_net_log.cc',
539 'log/test_net_log.h',
540 'log/test_net_log_entry.cc',
541 'log/test_net_log_entry.h',
542 'log/test_net_log_util.cc',
543 'log/test_net_log_util.h',
544 'proxy/mock_proxy_resolver.cc',
545 'proxy/mock_proxy_resolver.h',
546 'proxy/mock_proxy_script_fetcher.cc',
547 'proxy/mock_proxy_script_fetcher.h',
548 'proxy/proxy_config_service_common_unittest.cc',
549 'proxy/proxy_config_service_common_unittest.h',
550 'socket/socket_test_util.cc',
551 'socket/socket_test_util.h',
552 'test/cert_test_util.cc',
553 'test/cert_test_util.h',
554 'test/cert_test_util_nss.cc',
555 'test/channel_id_test_util.cc',
556 'test/channel_id_test_util.h',
557 'test/ct_test_util.cc',
558 'test/ct_test_util.h',
559 'test/embedded_test_server/embedded_test_server.cc',
560 'test/embedded_test_server/embedded_test_server.h',
561 'test/embedded_test_server/http_connection.cc',
562 'test/embedded_test_server/http_connection.h',
563 'test/embedded_test_server/http_request.cc',
564 'test/embedded_test_server/http_request.h',
565 'test/embedded_test_server/http_response.cc',
566 'test/embedded_test_server/http_response.h',
567 'test/embedded_test_server/stream_listen_socket.cc',
568 'test/embedded_test_server/stream_listen_socket.h',
569 'test/embedded_test_server/tcp_listen_socket.cc',
570 'test/embedded_test_server/tcp_listen_socket.h',
571 'test/event_waiter.h',
572 'test/net_test_suite.cc',
573 'test/net_test_suite.h',
574 'test/python_utils.cc',
575 'test/python_utils.h',
576 'test/spawned_test_server/base_test_server.cc',
577 'test/spawned_test_server/base_test_server.h',
578 'test/spawned_test_server/local_test_server.cc',
579 'test/spawned_test_server/local_test_server.h',
580 'test/spawned_test_server/local_test_server_posix.cc',
581 'test/spawned_test_server/local_test_server_win.cc',
582 'test/spawned_test_server/spawned_test_server.h',
583 'test/url_request/ssl_certificate_error_job.cc',
584 'test/url_request/ssl_certificate_error_job.h',
585 'test/url_request/url_request_failed_job.cc',
586 'test/url_request/url_request_failed_job.h',
587 'test/url_request/url_request_mock_data_job.cc',
588 'test/url_request/url_request_mock_data_job.h',
589 'test/url_request/url_request_slow_download_job.cc',
590 'test/url_request/url_request_slow_download_job.h',
591 'url_request/test_url_fetcher_factory.cc',
592 'url_request/test_url_fetcher_factory.h',
593 'url_request/url_request_test_util.cc',
594 'url_request/url_request_test_util.h',
599 '../third_party/protobuf/protobuf.gyp:py_proto',
603 'test/spawned_test_server/base_test_server.cc',
604 'test/spawned_test_server/base_test_server.h',
605 'test/spawned_test_server/local_test_server.cc',
606 'test/spawned_test_server/local_test_server.h',
607 'test/spawned_test_server/local_test_server_posix.cc',
608 'test/spawned_test_server/local_test_server_win.cc',
609 'test/spawned_test_server/spawned_test_server.h',
612 ['use_nss_certs == 1 or OS == "ios"', {
614 [ 'desktop_linux == 1 or chromeos == 1', {
616 '../build/linux/system.gyp:ssl',
618 }, { # desktop_linux == 0 and chromeos == 0
620 '../third_party/nss/nss.gyp:nspr',
621 '../third_party/nss/nss.gyp:nss',
622 'third_party/nss/ssl.gyp:libssl',
627 ['os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
629 ['use_allocator!="none"', {
631 '../base/allocator/allocator.gyp:allocator',
636 ['OS == "android"', {
638 'net_test_jni_headers',
641 'test/android/net_test_jni_onload.cc',
642 'test/android/net_test_jni_onload.h',
643 'test/embedded_test_server/android/embedded_test_server_android.cc',
644 'test/embedded_test_server/android/embedded_test_server_android.h',
645 'test/spawned_test_server/remote_test_server.cc',
646 'test/spawned_test_server/remote_test_server.h',
647 'test/spawned_test_server/spawner_communicator.cc',
648 'test/spawned_test_server/spawner_communicator.h',
651 [ 'use_v8_in_net==1', {
657 [ 'enable_mdns != 1', {
659 'dns/mock_mdns_socket_factory.cc',
660 'dns/mock_mdns_socket_factory.h'
663 [ 'use_nss_certs != 1', {
665 'test/cert_test_util_nss.cc',
668 ['disable_file_support != 1', {
670 'test/url_request/url_request_mock_http_job.cc',
671 'test/url_request/url_request_mock_http_job.h',
672 'url_request/test_url_request_interceptor.cc',
673 'url_request/test_url_request_interceptor.h',
677 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
678 'msvs_disabled_warnings': [4267, ],
681 'target_name': 'net_resources',
684 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/net',
688 'action_name': 'net_resources',
690 'grit_grd_file': 'base/net_resources.grd',
692 'includes': [ '../build/grit_action.gypi' ],
697 'target_name': 'net_extras',
698 'type': 'static_library',
699 'variables': { 'enable_wexit_time_destructors': 1, },
701 '../base/base.gyp:base',
702 '../sql/sql.gyp:sql',
706 '<@(net_extras_sources)',
710 'target_name': 'net_docs',
714 'action_name': 'net_docs',
716 'net_docs_input_dir': '.',
719 '<@(net_docs_sources)',
722 '<(net_docs_output_dir)',
726 '<(net_docs_script)',
728 '<(net_docs_input_dir)',
730 '<(net_docs_output_dir)',
731 '<@(net_docs_sources)',
733 'message': 'Rendering network stack documentation',
738 'target_name': 'http_server',
739 'type': 'static_library',
740 'variables': { 'enable_wexit_time_destructors': 1, },
742 '../base/base.gyp:base',
746 'server/http_connection.cc',
747 'server/http_connection.h',
748 'server/http_server.cc',
749 'server/http_server.h',
750 'server/http_server_request_info.cc',
751 'server/http_server_request_info.h',
752 'server/http_server_response_info.cc',
753 'server/http_server_response_info.h',
754 'server/web_socket.cc',
755 'server/web_socket.h',
756 'server/web_socket_encoder.cc',
757 'server/web_socket_encoder.h',
759 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
760 'msvs_disabled_warnings': [4267, ],
762 { # GN version: //net:balsa
763 'target_name': 'balsa',
764 'type': 'static_library',
766 '../base/base.gyp:base',
770 'tools/balsa/balsa_enums.h',
771 'tools/balsa/balsa_frame.cc',
772 'tools/balsa/balsa_frame.h',
773 'tools/balsa/balsa_headers.cc',
774 'tools/balsa/balsa_headers.h',
775 'tools/balsa/balsa_headers_token_utils.cc',
776 'tools/balsa/balsa_headers_token_utils.h',
777 'tools/balsa/balsa_visitor_interface.h',
778 'tools/balsa/http_message_constants.cc',
779 'tools/balsa/http_message_constants.h',
780 'tools/balsa/noop_balsa_visitor.h',
781 'tools/balsa/simple_buffer.cc',
782 'tools/balsa/simple_buffer.h',
783 'tools/balsa/split.cc',
784 'tools/balsa/split.h',
785 'tools/balsa/string_piece_utils.h',
786 'tools/quic/spdy_balsa_utils.cc',
787 'tools/quic/spdy_balsa_utils.h',
791 'target_name': 'dump_cache',
792 'type': 'executable',
794 '../base/base.gyp:base',
799 'tools/dump_cache/dump_cache.cc',
800 'tools/dump_cache/dump_files.cc',
801 'tools/dump_cache/dump_files.h',
803 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
804 'msvs_disabled_warnings': [4267, ],
807 'target_name': 'simple_quic_tools',
808 'type': 'static_library',
810 '../base/base.gyp:base',
811 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
812 '../url/url.gyp:url_lib',
817 'tools/quic/quic_client_base.cc',
818 'tools/quic/quic_client_base.h',
819 'tools/quic/quic_client_session.cc',
820 'tools/quic/quic_client_session.h',
821 'tools/quic/quic_dispatcher.cc',
822 'tools/quic/quic_dispatcher.h',
823 'tools/quic/quic_in_memory_cache.cc',
824 'tools/quic/quic_in_memory_cache.h',
825 'tools/quic/quic_per_connection_packet_writer.cc',
826 'tools/quic/quic_per_connection_packet_writer.h',
827 'tools/quic/quic_server_session.cc',
828 'tools/quic/quic_server_session.h',
829 'tools/quic/quic_simple_client.cc',
830 'tools/quic/quic_simple_client.h',
831 'tools/quic/quic_simple_per_connection_packet_writer.cc',
832 'tools/quic/quic_simple_per_connection_packet_writer.h',
833 'tools/quic/quic_simple_server.cc',
834 'tools/quic/quic_simple_server.h',
835 'tools/quic/quic_simple_server_packet_writer.cc',
836 'tools/quic/quic_simple_server_packet_writer.h',
837 'tools/quic/quic_spdy_client_stream.cc',
838 'tools/quic/quic_spdy_client_stream.h',
839 'tools/quic/quic_spdy_server_stream.cc',
840 'tools/quic/quic_spdy_server_stream.h',
841 'tools/quic/quic_time_wait_list_manager.cc',
842 'tools/quic/quic_time_wait_list_manager.h',
843 'tools/quic/synchronous_host_resolver.cc',
844 'tools/quic/synchronous_host_resolver.h',
849 ['use_v8_in_net == 1', {
852 'target_name': 'net_with_v8',
853 'type': '<(component)',
854 'variables': { 'enable_wexit_time_destructors': 1, },
856 '../base/base.gyp:base',
857 '../gin/gin.gyp:gin',
858 '../url/url.gyp:url_lib',
859 '../v8/tools/gyp/v8.gyp:v8',
863 'NET_IMPLEMENTATION',
866 'proxy/proxy_resolver_v8.cc',
867 'proxy/proxy_resolver_v8.h',
868 'proxy/proxy_resolver_v8_tracing.cc',
869 'proxy/proxy_resolver_v8_tracing.h',
870 'proxy/proxy_resolver_v8_tracing_wrapper.cc',
871 'proxy/proxy_resolver_v8_tracing_wrapper.h',
872 'proxy/proxy_service_v8.cc',
873 'proxy/proxy_service_v8.h',
875 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
876 'msvs_disabled_warnings': [4267, ],
880 ['use_v8_in_net == 1 and OS != "android"', {
883 # GN version: //net/interfaces
884 'target_name': 'net_interfaces',
885 'type': 'static_library',
887 'interfaces/host_resolver_service.mojom',
888 'interfaces/proxy_resolver_service.mojom',
891 '../third_party/mojo/mojom_bindings_generator.gypi',
895 # GN version: //net:net_browser_services
896 'target_name': 'net_browser_services',
897 'type': 'static_library',
899 'dns/mojo_host_resolver_impl.cc',
900 'dns/mojo_host_resolver_impl.h',
901 'proxy/in_process_mojo_proxy_resolver_factory.cc',
902 'proxy/in_process_mojo_proxy_resolver_factory.h',
903 'proxy/mojo_proxy_resolver_factory.h',
904 'proxy/proxy_resolver_factory_mojo.cc',
905 'proxy/proxy_resolver_factory_mojo.h',
906 'proxy/proxy_service_mojo.cc',
907 'proxy/proxy_service_mojo.h',
910 'mojo_type_converters',
913 '../mojo/mojo_base.gyp:mojo_common_lib',
914 '../mojo/mojo_base.gyp:mojo_environment_chromium',
915 '../mojo/mojo_base.gyp:mojo_url_type_converters',
916 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
918 # NOTE(amistry): As long as we support in-process Mojo v8 PAC, we
919 # need this dependency since in_process_mojo_proxy_resolver_factory
920 # creates the utility process side Mojo services in the browser
921 # process. Ultimately, this will go away when we only support
923 'net_utility_services',
927 # GN version: //net:net_utility_services
928 'target_name': 'net_utility_services',
929 'type': 'static_library',
931 'dns/host_resolver_mojo.cc',
932 'dns/host_resolver_mojo.h',
933 'proxy/mojo_proxy_resolver_factory_impl.cc',
934 'proxy/mojo_proxy_resolver_factory_impl.h',
935 'proxy/mojo_proxy_resolver_impl.cc',
936 'proxy/mojo_proxy_resolver_impl.h',
937 'proxy/mojo_proxy_resolver_v8_tracing_bindings.h',
940 'mojo_type_converters',
943 '../mojo/mojo_base.gyp:mojo_url_type_converters',
944 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
948 # GN version: //net:mojo_type_converters
949 'target_name': 'mojo_type_converters',
950 'type': 'static_library',
952 'dns/mojo_host_type_converters.cc',
953 'dns/mojo_host_type_converters.h',
954 'proxy/mojo_proxy_type_converters.cc',
955 'proxy/mojo_proxy_type_converters.h',
960 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
965 ['OS != "ios" and OS != "android"', {
967 # iOS doesn't have the concept of simple executables, these targets
968 # can't be compiled on the platform.
970 'target_name': 'crash_cache',
971 'type': 'executable',
973 '../base/base.gyp:base',
978 'tools/crash_cache/crash_cache.cc',
980 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
981 'msvs_disabled_warnings': [4267, ],
984 'target_name': 'crl_set_dump',
985 'type': 'executable',
987 '../base/base.gyp:base',
991 'tools/crl_set_dump/crl_set_dump.cc',
993 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
994 'msvs_disabled_warnings': [4267, ],
997 'target_name': 'dns_fuzz_stub',
998 'type': 'executable',
1000 '../base/base.gyp:base',
1004 'tools/dns_fuzz_stub/dns_fuzz_stub.cc',
1006 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1007 'msvs_disabled_warnings': [4267, ],
1010 'target_name': 'gdig',
1011 'type': 'executable',
1013 '../base/base.gyp:base',
1017 'tools/gdig/file_net_log.cc',
1018 'tools/gdig/gdig.cc',
1022 'target_name': 'get_server_time',
1023 'type': 'executable',
1025 '../base/base.gyp:base',
1026 '../base/base.gyp:base_i18n',
1027 '../url/url.gyp:url_lib',
1031 'tools/get_server_time/get_server_time.cc',
1033 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1034 'msvs_disabled_warnings': [4267, ],
1037 'target_name': 'hpack_example_generator',
1038 'type': 'executable',
1040 '../base/base.gyp:base',
1044 'spdy/fuzzing/hpack_example_generator.cc',
1046 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1047 'msvs_disabled_warnings': [4267, ],
1050 'target_name': 'hpack_fuzz_mutator',
1051 'type': 'executable',
1053 '../base/base.gyp:base',
1057 'spdy/fuzzing/hpack_fuzz_mutator.cc',
1059 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1060 'msvs_disabled_warnings': [4267, ],
1063 'target_name': 'hpack_fuzz_wrapper',
1064 'type': 'executable',
1066 '../base/base.gyp:base',
1070 'spdy/fuzzing/hpack_fuzz_wrapper.cc',
1072 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1073 'msvs_disabled_warnings': [4267, ],
1076 'target_name': 'net_watcher',
1077 'type': 'executable',
1079 '../base/base.gyp:base',
1084 [ 'use_glib == 1', {
1086 '../build/linux/system.gyp:gconf',
1087 '../build/linux/system.gyp:gio',
1093 'tools/net_watcher/net_watcher.cc',
1097 'target_name': 'run_testserver',
1098 'type': 'executable',
1100 '../base/base.gyp:base',
1101 '../base/base.gyp:test_support_base',
1102 '../testing/gtest.gyp:gtest',
1106 'tools/testserver/run_testserver.cc',
1110 'target_name': 'quic_client',
1111 'type': 'executable',
1113 '../base/base.gyp:base',
1114 '../url/url.gyp:url_lib',
1116 'simple_quic_tools',
1119 'tools/quic/quic_simple_client_bin.cc',
1123 'target_name': 'quic_server',
1124 'type': 'executable',
1126 '../base/base.gyp:base',
1129 'simple_quic_tools',
1132 'tools/quic/quic_simple_server_bin.cc',
1136 'target_name': 'stress_cache',
1137 'type': 'executable',
1139 '../base/base.gyp:base',
1144 'tools/stress_cache/stress_cache.cc',
1146 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1147 'msvs_disabled_warnings': [4267, ],
1150 'target_name': 'tld_cleanup',
1151 'type': 'executable',
1153 '../base/base.gyp:base',
1154 '../base/base.gyp:base_i18n',
1155 '../net/tools/tld_cleanup/tld_cleanup.gyp:tld_cleanup_util',
1158 'tools/tld_cleanup/tld_cleanup.cc',
1160 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1161 'msvs_disabled_warnings': [4267, ],
1165 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
1168 'target_name': 'epoll_server',
1169 'type': 'static_library',
1171 '../base/base.gyp:base',
1175 'tools/epoll_server/epoll_server.cc',
1176 'tools/epoll_server/epoll_server.h',
1180 'target_name': 'flip_in_mem_edsm_server_base',
1181 'type': 'static_library',
1186 '../base/base.gyp:base',
1187 '../third_party/boringssl/boringssl.gyp:boringssl',
1193 'tools/flip_server/acceptor_thread.cc',
1194 'tools/flip_server/acceptor_thread.h',
1195 'tools/flip_server/constants.h',
1196 'tools/flip_server/create_listener.cc',
1197 'tools/flip_server/create_listener.h',
1198 'tools/flip_server/flip_config.cc',
1199 'tools/flip_server/flip_config.h',
1200 'tools/flip_server/http_interface.cc',
1201 'tools/flip_server/http_interface.h',
1202 'tools/flip_server/loadtime_measurement.h',
1203 'tools/flip_server/mem_cache.cc',
1204 'tools/flip_server/mem_cache.h',
1205 'tools/flip_server/output_ordering.cc',
1206 'tools/flip_server/output_ordering.h',
1207 'tools/flip_server/ring_buffer.cc',
1208 'tools/flip_server/ring_buffer.h',
1209 'tools/flip_server/sm_connection.cc',
1210 'tools/flip_server/sm_connection.h',
1211 'tools/flip_server/sm_interface.h',
1212 'tools/flip_server/spdy_interface.cc',
1213 'tools/flip_server/spdy_interface.h',
1214 'tools/flip_server/spdy_ssl.cc',
1215 'tools/flip_server/spdy_ssl.h',
1216 'tools/flip_server/spdy_util.cc',
1217 'tools/flip_server/spdy_util.h',
1218 'tools/flip_server/streamer_interface.cc',
1219 'tools/flip_server/streamer_interface.h',
1220 'tools/flip_server/url_to_filename_encoder.cc',
1221 'tools/flip_server/url_to_filename_encoder.h',
1222 'tools/flip_server/url_utilities.cc',
1223 'tools/flip_server/url_utilities.h',
1227 'target_name': 'flip_in_mem_edsm_server_unittests',
1228 'type': 'executable',
1230 '../testing/gtest.gyp:gtest',
1231 '../testing/gmock.gyp:gmock',
1232 '../third_party/boringssl/boringssl.gyp:boringssl',
1233 'flip_in_mem_edsm_server_base',
1238 'tools/flip_server/flip_test_utils.cc',
1239 'tools/flip_server/flip_test_utils.h',
1240 'tools/flip_server/http_interface_test.cc',
1241 'tools/flip_server/mem_cache_test.cc',
1242 'tools/flip_server/run_all_tests.cc',
1243 'tools/flip_server/spdy_interface_test.cc',
1244 'tools/flip_server/url_to_filename_encoder_unittest.cc',
1245 'tools/flip_server/url_utilities_unittest.cc',
1249 'target_name': 'flip_in_mem_edsm_server',
1250 'type': 'executable',
1255 '../base/base.gyp:base',
1256 'flip_in_mem_edsm_server_base',
1260 'tools/flip_server/flip_in_mem_edsm_server.cc',
1264 'target_name': 'epoll_quic_tools',
1265 'type': 'static_library',
1267 '../base/base.gyp:base',
1268 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
1269 '../url/url.gyp:url_lib',
1276 'tools/quic/quic_client.cc',
1277 'tools/quic/quic_client.h',
1278 'tools/quic/quic_default_packet_writer.cc',
1279 'tools/quic/quic_default_packet_writer.h',
1280 'tools/quic/quic_epoll_clock.cc',
1281 'tools/quic/quic_epoll_clock.h',
1282 'tools/quic/quic_epoll_connection_helper.cc',
1283 'tools/quic/quic_epoll_connection_helper.h',
1284 'tools/quic/quic_packet_reader.cc',
1285 'tools/quic/quic_packet_reader.h',
1286 'tools/quic/quic_packet_writer_wrapper.cc',
1287 'tools/quic/quic_packet_writer_wrapper.h',
1288 'tools/quic/quic_server.cc',
1289 'tools/quic/quic_server.h',
1290 'tools/quic/quic_socket_utils.cc',
1291 'tools/quic/quic_socket_utils.h',
1295 'target_name': 'epoll_quic_client',
1296 'type': 'executable',
1298 '../base/base.gyp:base',
1301 'simple_quic_tools',
1304 'tools/quic/quic_client_bin.cc',
1308 'target_name': 'epoll_quic_server',
1309 'type': 'executable',
1311 '../base/base.gyp:base',
1315 'simple_quic_tools',
1318 'tools/quic/quic_server_bin.cc',
1325 { # The same target as 'net', but with smaller binary size due to
1326 # exclusion of ICU, FTP, FILE and WebSockets support.
1327 'target_name': 'net_small',
1329 'disable_ftp_support': 1,
1330 'disable_file_support': 1,
1331 'enable_websockets': 0,
1334 '../url/url.gyp:url_lib_use_icu_alternatives_on_android',
1337 'USE_ICU_ALTERNATIVES_ON_ANDROID=1',
1338 'DISABLE_FILE_SUPPORT=1',
1339 'DISABLE_FTP_SUPPORT=1',
1342 'base/net_string_util_icu_alternatives_android.cc',
1343 'base/net_string_util_icu_alternatives_android.h',
1345 'includes': [ 'net_common.gypi' ],
1348 'target_name': 'net_jni_headers',
1351 'android/java/src/org/chromium/net/AndroidCertVerifyResult.java',
1352 'android/java/src/org/chromium/net/AndroidKeyStore.java',
1353 'android/java/src/org/chromium/net/AndroidNetworkLibrary.java',
1354 'android/java/src/org/chromium/net/AndroidPrivateKey.java',
1355 'android/java/src/org/chromium/net/AndroidTrafficStats.java',
1356 'android/java/src/org/chromium/net/GURLUtils.java',
1357 'android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java',
1358 'android/java/src/org/chromium/net/NetStringUtil.java',
1359 'android/java/src/org/chromium/net/NetworkChangeNotifier.java',
1360 'android/java/src/org/chromium/net/ProxyChangeListener.java',
1361 'android/java/src/org/chromium/net/X509Util.java',
1364 'jni_gen_package': 'net',
1366 'includes': [ '../build/jni_generator.gypi' ],
1369 'target_name': 'net_test_jni_headers',
1372 'android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java',
1373 'test/android/javatests/src/org/chromium/net/test/EmbeddedTestServer.java',
1374 'test/android/javatests/src/org/chromium/net/test/DummySpnegoAuthenticator.java',
1377 'jni_gen_package': 'net/test',
1379 'includes': [ '../build/jni_generator.gypi' ],
1382 'target_name': 'net_java',
1385 'java_in_dir': '../net/android/java',
1388 '../base/base.gyp:base',
1389 'cert_verify_status_android_java',
1390 'certificate_mime_types_java',
1391 'network_change_notifier_types_java',
1393 'private_key_types_java',
1394 'remote_android_keystore_aidl',
1395 'traffic_stats_error_java',
1397 'includes': [ '../build/java.gypi' ],
1400 # Processes the interface files for communication with an Android KeyStore
1401 # running in a separate process.
1402 'target_name': 'remote_android_keystore_aidl',
1405 'aidl_interface_file': '../net/android/java/src/org/chromium/net/IRemoteAndroidKeyStoreInterface.aidl',
1408 '../net/android/java/src/org/chromium/net/IRemoteAndroidKeyStore.aidl',
1409 '../net/android/java/src/org/chromium/net/IRemoteAndroidKeyStoreCallbacks.aidl',
1411 'includes': [ '../build/java_aidl.gypi' ],
1414 'target_name': 'net_java_test_support',
1417 'java_in_dir': '../net/test/android/javatests',
1422 'url_request_failed_job_java',
1423 '../base/base.gyp:base_java',
1424 '../third_party/android_tools/android_tools.gyp:legacy_http_javalib',
1426 'includes': [ '../build/java.gypi' ],
1429 'target_name': 'url_request_failed_job_java',
1432 'source_file': 'test/url_request/url_request_failed_job.h',
1434 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1437 'target_name': 'net_javatests',
1440 'java_in_dir': '../net/android/javatests',
1443 '../base/base.gyp:base',
1444 '../base/base.gyp:base_java_test_support',
1447 'includes': [ '../build/java.gypi' ],
1450 'target_name': 'net_errors_java',
1453 'android/java/NetError.template',
1456 'package_name': 'org/chromium/net',
1457 'template_deps': ['base/net_error_list.h'],
1459 'includes': [ '../build/android/java_cpp_template.gypi' ],
1462 'target_name': 'certificate_mime_types_java',
1465 'source_file': 'base/mime_util.h',
1467 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1470 'target_name': 'cert_verify_status_android_java',
1473 'source_file': 'android/cert_verify_result_android.h',
1475 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1478 'target_name': 'network_change_notifier_types_java',
1481 'source_file': 'base/network_change_notifier.h',
1483 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1486 'target_name': 'private_key_types_java',
1489 'source_file': 'android/keystore.h',
1491 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1494 'target_name': 'traffic_stats_error_java',
1497 'source_file': 'android/traffic_stats.cc',
1499 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1502 'target_name': 'net_unittests_apk',
1507 'net_java_test_support',
1511 ['v8_use_external_startup_data==1', {
1513 '../v8/tools/gyp/v8.gyp:v8_external_snapshot',
1517 'destination': '<(asset_location)',
1519 '<(PRODUCT_DIR)/natives_blob.bin',
1520 '<(PRODUCT_DIR)/snapshot_blob.bin',
1527 'test_suite_name': 'net_unittests',
1528 'isolate_file': 'net_unittests.isolate',
1529 'android_manifest_path': 'android/unittest_support/AndroidManifest.xml',
1530 'resource_dir': 'android/unittest_support/res',
1532 ['v8_use_external_startup_data==1', {
1533 'asset_location': '<(PRODUCT_DIR)/net_unittests_apk/assets',
1534 'additional_input_paths': [
1535 '<(PRODUCT_DIR)/net_unittests_apk/assets/natives_blob.bin',
1536 '<(PRODUCT_DIR)/net_unittests_apk/assets/snapshot_blob.bin',
1539 '<(PRODUCT_DIR)/natives_blob.bin',
1540 '<(PRODUCT_DIR)/snapshot_blob.bin',
1545 'includes': [ '../build/apk_test.gypi' ],
1548 'target_name': 'net_junit_tests',
1552 '../base/base.gyp:base',
1553 '../base/base.gyp:base_java_test_support',
1554 '../base/base.gyp:base_junit_test_support',
1555 '../testing/android/junit/junit_test.gyp:junit_test_support',
1558 'main_class': 'org.chromium.testing.local.JunitTestMain',
1564 '../build/host_jar.gypi',
1570 ['OS == "android" or OS == "linux"', {
1573 'target_name': 'disk_cache_memory_test',
1574 'type': 'executable',
1576 '../base/base.gyp:base',
1580 'tools/disk_cache_memory_test/disk_cache_memory_test.cc',
1585 ['test_isolation_mode != "noop"', {
1588 'target_name': 'net_unittests_run',
1594 '../build/isolate.gypi',
1597 'net_unittests.isolate',