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.
9 'linux_link_kerberos%': 0,
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).
15 }, { # chromeos == 0 and embedded==0 and OS!="android" and OS!="ios"
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,
26 'posix_avoid_mmap%': 0,
29 # Websockets and socket stream are not used on iOS.
30 'enable_websockets%': 0,
31 # iOS does not use V8.
33 'enable_built_in_dns%': 0,
35 'enable_websockets%': 1,
37 'enable_built_in_dns%': 1,
42 '../build/win_precompile.gypi',
47 'target_name': 'net_derived_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',
63 '<(SHARED_INTERMEDIATE_DIR)/net/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT)-inc.cc',
66 'tools/tld_cleanup/make_dafsa.py',
70 'tools/tld_cleanup/make_dafsa.py',
72 '<(SHARED_INTERMEDIATE_DIR)/net/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT)-inc.cc',
76 'direct_dependent_settings': {
78 '<(SHARED_INTERMEDIATE_DIR)'
83 # Protobuf compiler / generator for QUIC crypto protocol buffer.
84 # GN version: //net/quic/proto
85 'target_name': 'net_quic_proto',
86 'type': 'static_library',
88 'quic/proto/cached_network_parameters.proto',
89 'quic/proto/source_address_token.proto',
92 'enable_wexit_time_destructors': 1,
93 'proto_in_dir': 'quic/proto',
94 'proto_out_dir': 'net/quic/proto',
95 'cc_generator_options': 'dllexport_decl=NET_EXPORT_PRIVATE:',
96 'cc_include': 'net/base/net_export.h',
99 '../build/protoc.gypi',
102 'NET_IMPLEMENTATION',
107 'target_name': 'net',
109 '../base/base.gyp:base_i18n',
110 '../third_party/icu/icu.gyp:icui18n',
111 '../third_party/icu/icu.gyp:icuuc',
112 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
113 '../url/url.gyp:url_lib',
117 'base/filename_util_icu.cc',
118 'base/net_string_util_icu.cc',
119 'base/net_util_icu.cc',
121 'includes': [ 'net_common.gypi' ],
124 # GN version: //net:net_unittests
125 'target_name': 'net_unittests',
126 'type': '<(gtest_target_type)',
128 '../base/base.gyp:base',
129 '../base/base.gyp:base_i18n',
130 '../base/base.gyp:base_prefs_test_support',
131 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
132 '../crypto/crypto.gyp:crypto',
133 '../crypto/crypto.gyp:crypto_test_support',
134 '../testing/gmock.gyp:gmock',
135 '../testing/gtest.gyp:gtest',
136 '../third_party/zlib/zlib.gyp:zlib',
137 '../url/url.gyp:url_lib',
142 'net_derived_sources',
148 '<@(net_test_sources)',
151 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
155 'flip_in_mem_edsm_server_base',
158 '<@(net_linux_test_sources)',
161 ['OS == "mac" or OS == "ios"', {
163 '<@(net_base_test_mac_ios_sources)',
168 'proxy/proxy_config_service_linux_unittest.cc',
171 [ 'OS == "android"', {
173 # See bug http://crbug.com/344533.
174 'disk_cache/blockfile/index_table_v3_unittest.cc',
178 'net_test_jni_headers',
181 [ 'use_nss_certs != 1', {
183 'cert/nss_cert_database_unittest.cc',
184 'cert/nss_cert_database_chromeos_unittest.cc',
185 'cert/nss_profile_filter_chromeos_unittest.cc',
186 'ssl/client_cert_store_chromeos_unittest.cc',
187 'ssl/client_cert_store_nss_unittest.cc',
190 [ 'use_openssl == 1', {
191 # Avoid compiling/linking with the system library.
193 '../third_party/boringssl/boringssl.gyp:boringssl',
196 [ 'use_nss_certs == 1 or OS == "ios" or use_openssl == 0', {
198 [ 'desktop_linux == 1 or chromeos == 1', {
200 '../build/linux/system.gyp:ssl',
202 }, { # desktop_linux == 0 and chromeos == 0
204 '../third_party/nss/nss.gyp:nspr',
205 '../third_party/nss/nss.gyp:nss',
206 'third_party/nss/ssl.gyp:libssl',
211 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
213 ['use_allocator!="none"', {
215 '../base/allocator/allocator.gyp:allocator',
220 [ 'use_kerberos==1', {
224 }, { # use_kerberos == 0
226 'http/http_auth_gssapi_posix_unittest.cc',
227 'http/http_auth_handler_negotiate_unittest.cc',
228 'http/mock_gssapi_library_posix.cc',
229 'http/mock_gssapi_library_posix.h',
232 [ 'use_openssl == 1 or (desktop_linux == 0 and chromeos == 0 and OS != "ios")', {
233 # Only include this test when on Posix and using NSS for
234 # cert verification or on iOS (which also uses NSS for certs).
236 'cert_net/nss_ocsp_unittest.cc',
239 [ 'use_openssl==1', {
240 # When building for OpenSSL, we need to exclude NSS specific tests
241 # or functionality not supported by OpenSSL yet.
242 # TODO(bulach): Add equivalent tests when the underlying
243 # functionality is ported to OpenSSL.
245 'cert/x509_util_nss_unittest.cc',
246 'quic/test_tools/crypto_test_utils_nss.cc',
248 }, { # else !use_openssl: remove the unneeded files and pull in NSS.
250 'cert/x509_util_openssl_unittest.cc',
251 'quic/test_tools/crypto_test_utils_openssl.cc',
252 'socket/ssl_client_socket_openssl_unittest.cc',
253 'ssl/ssl_client_session_cache_openssl_unittest.cc',
257 [ 'use_openssl_certs == 0', {
259 'ssl/openssl_client_key_store_unittest.cc',
262 [ 'enable_websockets != 1', {
264 ['exclude', '^websockets/'],
265 ['exclude', '^server/'],
271 ['disable_file_support==1', {
273 'base/directory_lister_unittest.cc',
274 'url_request/url_request_file_job_unittest.cc',
277 [ 'disable_ftp_support==1', {
279 ['exclude', '^ftp/'],
282 'url_request/url_request_ftp_job_unittest.cc',
286 [ 'enable_built_in_dns!=1', {
288 'dns/address_sorter_posix_unittest.cc',
289 'dns/address_sorter_unittest.cc',
293 # Always need use_v8_in_net to be 1 to run gyp on Android, so just
294 # remove net_unittest's dependency on v8 when using icu alternatives
295 # instead of setting use_v8_in_net to 0.
296 [ 'use_v8_in_net==1 and use_icu_alternatives_on_android==0', {
300 }, { # else: !use_v8_in_net
302 'proxy/proxy_resolver_v8_tracing_unittest.cc',
303 'proxy/proxy_resolver_v8_unittest.cc',
308 [ 'use_v8_in_net==1 and OS != "android"', {
311 'net_browser_services',
312 'net_utility_services',
313 '../third_party/mojo/mojo_edk.gyp:mojo_system_impl',
317 'dns/host_resolver_mojo_unittest.cc',
318 'dns/mojo_host_resolver_impl_unittest.cc',
319 'proxy/load_state_change_coalescer_unittest.cc',
320 'proxy/mojo_proxy_resolver_factory_impl_unittest.cc',
321 'proxy/mojo_proxy_resolver_impl_unittest.cc',
322 'proxy/proxy_resolver_mojo_unittest.cc',
323 'proxy/proxy_service_mojo_unittest.cc',
328 [ 'enable_mdns != 1', {
330 'dns/mdns_cache_unittest.cc',
331 'dns/mdns_client_unittest.cc',
332 'dns/mdns_query_unittest.cc',
333 'dns/record_parsed_unittest.cc',
334 'dns/record_rdata_unittest.cc',
339 'dns/dns_config_service_posix_unittest.cc',
340 'http/http_auth_gssapi_posix_unittest.cc',
342 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
343 'msvs_disabled_warnings': [4267, ],
345 [ 'icu_use_data_file_flag == 0', {
346 # This is needed to trigger the dll copy step on windows.
347 # TODO(mark): Specifying this here shouldn't be necessary.
349 '../third_party/icu/icu.gyp:icudata',
358 'action_name': 'copy_test_data',
361 'data/ssl/certificates/',
363 'data/url_request_unittest/',
365 'test_data_prefix': 'net',
367 'includes': [ '../build/copy_test_data_ios.gypi' ],
371 # TODO(droger): The following tests are disabled because the
372 # implementation is missing or incomplete.
373 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS.
374 'base/keygen_handler_unittest.cc',
375 'disk_cache/backend_unittest.cc',
376 'disk_cache/blockfile/block_files_unittest.cc',
377 # Need to read input data files.
378 'filter/gzip_filter_unittest.cc',
380 "cert_net/cert_net_fetcher_impl_unittest.cc",
381 'proxy/proxy_script_fetcher_impl_unittest.cc',
382 'socket/ssl_client_socket_unittest.cc',
383 'socket/ssl_server_socket_unittest.cc',
384 'spdy/fuzzing/hpack_fuzz_util_test.cc',
385 # Needs GetAppOutput().
386 'test/python_utils_unittest.cc',
387 'url_request/url_fetcher_impl_unittest.cc',
388 'url_request/url_request_context_builder_unittest.cc',
390 # The following tests are disabled because they don't apply to
392 # OS is not "linux" or "freebsd" or "openbsd".
393 'socket/unix_domain_client_socket_posix_unittest.cc',
394 'socket/unix_domain_listen_socket_posix_unittest.cc',
395 'socket/unix_domain_server_socket_posix_unittest.cc',
397 # See bug http://crbug.com/344533.
398 'disk_cache/blockfile/index_table_v3_unittest.cc',
401 ['OS == "android"', {
402 # TODO(mmenke): This depends on test_support_base, which depends on
403 # icu. Figure out a way to remove that dependency.
405 '../testing/android/native_test.gyp:native_test_native_code',
408 [ 'use_icu_alternatives_on_android == 1', {
410 '../base/base.gyp:base_i18n',
413 'base/filename_util_unittest.cc',
414 'base/net_util_icu_unittest.cc',
418 ['use_v8_in_net==1 and v8_use_external_startup_data==1', {
420 '../gin/gin.gyp:gin',
424 'target_conditions': [
425 # These source files are excluded by default platform rules, but they
426 # are needed in specific cases on other platforms. Re-including them can
427 # only be done in target_conditions as it is evaluated after the
429 ['OS == "android"', {
431 ['include', '^base/address_tracker_linux_unittest\\.cc$'],
436 ['include', '^base/mac/url_conversions_unittest\\.mm$'],
442 'target_name': 'net_perftests',
443 'type': 'executable',
445 '../base/base.gyp:base',
446 '../base/base.gyp:base_i18n',
447 '../base/base.gyp:test_support_perf',
448 '../testing/gtest.gyp:gtest',
449 '../url/url.gyp:url_lib',
454 'cookies/cookie_monster_perftest.cc',
455 'disk_cache/blockfile/disk_cache_perftest.cc',
456 'proxy/proxy_resolver_perftest.cc',
457 'udp/udp_socket_perftest.cc',
458 'websockets/websocket_frame_perftest.cc',
461 [ 'use_v8_in_net==1', {
465 }, { # else: !use_v8_in_net
467 'proxy/proxy_resolver_perftest.cc',
473 [ 'icu_use_data_file_flag == 0', {
474 # This is needed to trigger the dll copy step on windows.
475 # TODO(mark): Specifying this here shouldn't be necessary.
477 '../third_party/icu/icu.gyp:icudata',
481 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
482 'msvs_disabled_warnings': [4267, ],
484 [ 'enable_websockets != 1', {
486 'websockets/websocket_frame_perftest.cc',
492 'target_name': 'net_test_support',
493 'type': 'static_library',
495 '../base/base.gyp:base',
496 '../base/base.gyp:test_support_base',
497 '../crypto/crypto.gyp:crypto',
498 '../net/tools/tld_cleanup/tld_cleanup.gyp:tld_cleanup_util',
499 '../testing/gtest.gyp:gtest',
500 '../testing/gmock.gyp:gmock',
501 '../url/url.gyp:url_lib',
504 'export_dependent_settings': [
505 '../base/base.gyp:base',
506 # TODO(mmenke): This depends on icu, figure out a way to build tests
508 '../base/base.gyp:test_support_base',
509 '../testing/gtest.gyp:gtest',
510 '../testing/gmock.gyp:gmock',
513 'base/load_timing_info_test_util.cc',
514 'base/load_timing_info_test_util.h',
515 'base/mock_file_stream.cc',
516 'base/mock_file_stream.h',
517 'base/test_completion_callback.cc',
518 'base/test_completion_callback.h',
519 'base/test_data_directory.cc',
520 'base/test_data_directory.h',
521 'cert/mock_cert_verifier.cc',
522 'cert/mock_cert_verifier.h',
523 'cookies/cookie_monster_store_test.cc',
524 'cookies/cookie_monster_store_test.h',
525 'cookies/cookie_store_test_callbacks.cc',
526 'cookies/cookie_store_test_callbacks.h',
527 'cookies/cookie_store_test_helpers.cc',
528 'cookies/cookie_store_test_helpers.h',
529 'disk_cache/disk_cache_test_base.cc',
530 'disk_cache/disk_cache_test_base.h',
531 'disk_cache/disk_cache_test_util.cc',
532 'disk_cache/disk_cache_test_util.h',
533 'dns/dns_test_util.cc',
534 'dns/dns_test_util.h',
535 'dns/mock_host_resolver.cc',
536 'dns/mock_host_resolver.h',
537 'dns/mock_mdns_socket_factory.cc',
538 'dns/mock_mdns_socket_factory.h',
539 'http/http_transaction_test_util.cc',
540 'http/http_transaction_test_util.h',
541 'log/captured_net_log_entry.cc',
542 'log/captured_net_log_entry.h',
543 'log/test_net_log.cc',
544 'log/test_net_log.h',
545 'log/capturing_net_log_observer.cc',
546 'log/capturing_net_log_observer.h',
547 'proxy/mock_proxy_resolver.cc',
548 'proxy/mock_proxy_resolver.h',
549 'proxy/mock_proxy_script_fetcher.cc',
550 'proxy/mock_proxy_script_fetcher.h',
551 'proxy/proxy_config_service_common_unittest.cc',
552 'proxy/proxy_config_service_common_unittest.h',
553 'socket/socket_test_util.cc',
554 'socket/socket_test_util.h',
555 'test/cert_test_util.cc',
556 'test/cert_test_util.h',
557 'test/cert_test_util_nss.cc',
558 'test/ct_test_util.cc',
559 'test/ct_test_util.h',
560 'test/embedded_test_server/embedded_test_server.cc',
561 'test/embedded_test_server/embedded_test_server.h',
562 'test/embedded_test_server/http_connection.cc',
563 'test/embedded_test_server/http_connection.h',
564 'test/embedded_test_server/http_request.cc',
565 'test/embedded_test_server/http_request.h',
566 'test/embedded_test_server/http_response.cc',
567 'test/embedded_test_server/http_response.h',
568 'test/event_waiter.h',
569 'test/net_test_suite.cc',
570 'test/net_test_suite.h',
571 'test/python_utils.cc',
572 'test/python_utils.h',
573 'test/spawned_test_server/base_test_server.cc',
574 'test/spawned_test_server/base_test_server.h',
575 'test/spawned_test_server/local_test_server.cc',
576 'test/spawned_test_server/local_test_server.h',
577 'test/spawned_test_server/local_test_server_posix.cc',
578 'test/spawned_test_server/local_test_server_win.cc',
579 'test/spawned_test_server/remote_test_server.cc',
580 'test/spawned_test_server/remote_test_server.h',
581 'test/spawned_test_server/spawned_test_server.h',
582 'test/spawned_test_server/spawner_communicator.cc',
583 'test/spawned_test_server/spawner_communicator.h',
584 'test/url_request/url_request_failed_job.cc',
585 'test/url_request/url_request_failed_job.h',
586 'test/url_request/url_request_mock_data_job.cc',
587 'test/url_request/url_request_mock_data_job.h',
588 'test/url_request/url_request_slow_download_job.cc',
589 'test/url_request/url_request_slow_download_job.h',
590 'url_request/test_url_fetcher_factory.cc',
591 'url_request/test_url_fetcher_factory.h',
592 'url_request/url_request_test_util.cc',
593 'url_request/url_request_test_util.h',
598 '../third_party/protobuf/protobuf.gyp:py_proto',
601 ['use_openssl == 0 and (use_nss_certs == 1 or OS == "ios")', {
603 [ 'desktop_linux == 1 or chromeos == 1', {
605 '../build/linux/system.gyp:ssl',
607 }, { # desktop_linux == 0 and chromeos == 0
609 '../third_party/nss/nss.gyp:nspr',
610 '../third_party/nss/nss.gyp:nss',
611 'third_party/nss/ssl.gyp:libssl',
616 ['os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
618 ['use_allocator!="none"', {
620 '../base/allocator/allocator.gyp:allocator',
625 ['OS != "android"', {
627 'test/spawned_test_server/remote_test_server.cc',
628 'test/spawned_test_server/remote_test_server.h',
629 'test/spawned_test_server/spawner_communicator.cc',
630 'test/spawned_test_server/spawner_communicator.h',
633 [ 'use_v8_in_net==1', {
639 [ 'enable_mdns != 1', {
641 'dns/mock_mdns_socket_factory.cc',
642 'dns/mock_mdns_socket_factory.h'
645 [ 'use_nss_certs != 1', {
647 'test/cert_test_util_nss.cc',
650 ['disable_file_support != 1', {
652 'test/url_request/url_request_mock_http_job.cc',
653 'test/url_request/url_request_mock_http_job.h',
654 'url_request/test_url_request_interceptor.cc',
655 'url_request/test_url_request_interceptor.h',
659 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
660 'msvs_disabled_warnings': [4267, ],
663 'target_name': 'net_resources',
666 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/net',
670 'action_name': 'net_resources',
672 'grit_grd_file': 'base/net_resources.grd',
674 'includes': [ '../build/grit_action.gypi' ],
679 'target_name': 'net_extras',
680 'type': 'static_library',
681 'variables': { 'enable_wexit_time_destructors': 1, },
683 '../base/base.gyp:base',
684 '../sql/sql.gyp:sql',
688 '<@(net_extras_sources)',
692 'target_name': 'net_docs',
696 'action_name': 'net_docs',
698 'net_docs_input_dir': '.',
701 '<@(net_docs_sources)',
704 '<(net_docs_output_dir)',
708 '<(net_docs_script)',
710 '<(net_docs_input_dir)',
712 '<(net_docs_output_dir)',
713 '<@(net_docs_sources)',
715 'message': 'Rendering network stack documentation',
720 'target_name': 'http_server',
721 'type': 'static_library',
722 'variables': { 'enable_wexit_time_destructors': 1, },
724 '../base/base.gyp:base',
728 'server/http_connection.cc',
729 'server/http_connection.h',
730 'server/http_server.cc',
731 'server/http_server.h',
732 'server/http_server_request_info.cc',
733 'server/http_server_request_info.h',
734 'server/http_server_response_info.cc',
735 'server/http_server_response_info.h',
736 'server/web_socket.cc',
737 'server/web_socket.h',
738 'server/web_socket_encoder.cc',
739 'server/web_socket_encoder.h',
741 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
742 'msvs_disabled_warnings': [4267, ],
744 { # GN version: //net:balsa
745 'target_name': 'balsa',
746 'type': 'static_library',
748 '../base/base.gyp:base',
752 'tools/balsa/balsa_enums.h',
753 'tools/balsa/balsa_frame.cc',
754 'tools/balsa/balsa_frame.h',
755 'tools/balsa/balsa_headers.cc',
756 'tools/balsa/balsa_headers.h',
757 'tools/balsa/balsa_headers_token_utils.cc',
758 'tools/balsa/balsa_headers_token_utils.h',
759 'tools/balsa/balsa_visitor_interface.h',
760 'tools/balsa/http_message_constants.cc',
761 'tools/balsa/http_message_constants.h',
762 'tools/balsa/noop_balsa_visitor.h',
763 'tools/balsa/simple_buffer.cc',
764 'tools/balsa/simple_buffer.h',
765 'tools/balsa/split.cc',
766 'tools/balsa/split.h',
767 'tools/balsa/string_piece_utils.h',
768 'tools/quic/spdy_utils.cc',
769 'tools/quic/spdy_utils.h',
773 'target_name': 'dump_cache',
774 'type': 'executable',
776 '../base/base.gyp:base',
781 'tools/dump_cache/cache_dumper.cc',
782 'tools/dump_cache/cache_dumper.h',
783 'tools/dump_cache/dump_cache.cc',
784 'tools/dump_cache/dump_files.cc',
785 'tools/dump_cache/dump_files.h',
786 'tools/dump_cache/simple_cache_dumper.cc',
787 'tools/dump_cache/simple_cache_dumper.h',
788 'tools/dump_cache/url_to_filename_encoder.cc',
789 'tools/dump_cache/url_to_filename_encoder.h',
790 'tools/dump_cache/url_utilities.cc',
791 'tools/dump_cache/url_utilities.h',
793 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
794 'msvs_disabled_warnings': [4267, ],
797 'target_name': 'simple_quic_tools',
798 'type': 'static_library',
800 '../base/base.gyp:base',
801 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
802 '../url/url.gyp:url_lib',
807 'tools/quic/quic_client_session.cc',
808 'tools/quic/quic_client_session.h',
809 'tools/quic/quic_dispatcher.cc',
810 'tools/quic/quic_dispatcher.h',
811 'tools/quic/quic_in_memory_cache.cc',
812 'tools/quic/quic_in_memory_cache.h',
813 'tools/quic/quic_per_connection_packet_writer.cc',
814 'tools/quic/quic_per_connection_packet_writer.h',
815 'tools/quic/quic_server_session.cc',
816 'tools/quic/quic_server_session.h',
817 'tools/quic/quic_simple_client.cc',
818 'tools/quic/quic_simple_client.h',
819 'tools/quic/quic_simple_per_connection_packet_writer.cc',
820 'tools/quic/quic_simple_per_connection_packet_writer.h',
821 'tools/quic/quic_simple_server.cc',
822 'tools/quic/quic_simple_server.h',
823 'tools/quic/quic_simple_server_packet_writer.cc',
824 'tools/quic/quic_simple_server_packet_writer.h',
825 'tools/quic/quic_spdy_client_stream.cc',
826 'tools/quic/quic_spdy_client_stream.h',
827 'tools/quic/quic_spdy_server_stream.cc',
828 'tools/quic/quic_spdy_server_stream.h',
829 'tools/quic/quic_time_wait_list_manager.cc',
830 'tools/quic/quic_time_wait_list_manager.h',
831 'tools/quic/synchronous_host_resolver.cc',
832 'tools/quic/synchronous_host_resolver.h',
837 ['use_v8_in_net == 1', {
840 'target_name': 'net_with_v8',
841 'type': '<(component)',
842 'variables': { 'enable_wexit_time_destructors': 1, },
844 '../base/base.gyp:base',
845 '../gin/gin.gyp:gin',
846 '../url/url.gyp:url_lib',
847 '../v8/tools/gyp/v8.gyp:v8',
851 'NET_IMPLEMENTATION',
854 'proxy/proxy_resolver_v8.cc',
855 'proxy/proxy_resolver_v8.h',
856 'proxy/proxy_resolver_v8_tracing.cc',
857 'proxy/proxy_resolver_v8_tracing.h',
858 'proxy/proxy_service_v8.cc',
859 'proxy/proxy_service_v8.h',
861 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
862 'msvs_disabled_warnings': [4267, ],
866 ['use_v8_in_net == 1 and OS != "android"', {
869 # GN version: //net/interfaces
870 'target_name': 'net_interfaces',
871 'type': 'static_library',
873 'interfaces/host_resolver_service.mojom',
874 'interfaces/proxy_resolver_service.mojom',
877 '../third_party/mojo/mojom_bindings_generator.gypi',
881 # GN version: //net:net_browser_services
882 'target_name': 'net_browser_services',
883 'type': 'static_library',
885 'dns/mojo_host_resolver_impl.cc',
886 'dns/mojo_host_resolver_impl.h',
887 'proxy/in_process_mojo_proxy_resolver_factory.cc',
888 'proxy/in_process_mojo_proxy_resolver_factory.h',
889 'proxy/mojo_proxy_resolver_factory.h',
890 'proxy/proxy_resolver_mojo.cc',
891 'proxy/proxy_resolver_mojo.h',
892 'proxy/proxy_service_mojo.cc',
893 'proxy/proxy_service_mojo.h',
896 'mojo_type_converters',
899 '../mojo/mojo_base.gyp:mojo_common_lib',
900 '../mojo/mojo_base.gyp:mojo_environment_chromium',
901 '../mojo/mojo_base.gyp:mojo_url_type_converters',
902 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
904 # NOTE(amistry): As long as we support in-process Mojo v8 PAC, we
905 # need this dependency since in_process_mojo_proxy_resolver_factory
906 # creates the utility process side Mojo services in the browser
907 # process. Ultimately, this will go away when we only support
909 'net_utility_services',
913 # GN version: //net:net_utility_services
914 'target_name': 'net_utility_services',
915 'type': 'static_library',
917 'dns/host_resolver_mojo.cc',
918 'dns/host_resolver_mojo.h',
919 'proxy/load_state_change_coalescer.cc',
920 'proxy/load_state_change_coalescer.h',
921 'proxy/mojo_proxy_resolver_factory_impl.cc',
922 'proxy/mojo_proxy_resolver_factory_impl.h',
923 'proxy/mojo_proxy_resolver_impl.cc',
924 'proxy/mojo_proxy_resolver_impl.h',
927 'mojo_type_converters',
930 '../mojo/mojo_base.gyp:mojo_url_type_converters',
931 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
935 # GN version: //net:mojo_type_converters
936 'target_name': 'mojo_type_converters',
937 'type': 'static_library',
939 'dns/mojo_host_type_converters.cc',
940 'dns/mojo_host_type_converters.h',
941 'proxy/mojo_proxy_type_converters.cc',
942 'proxy/mojo_proxy_type_converters.h',
947 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
952 ['OS != "ios" and OS != "android"', {
954 # iOS doesn't have the concept of simple executables, these targets
955 # can't be compiled on the platform.
957 'target_name': 'crash_cache',
958 'type': 'executable',
960 '../base/base.gyp:base',
965 'tools/crash_cache/crash_cache.cc',
967 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
968 'msvs_disabled_warnings': [4267, ],
971 'target_name': 'crl_set_dump',
972 'type': 'executable',
974 '../base/base.gyp:base',
978 'tools/crl_set_dump/crl_set_dump.cc',
980 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
981 'msvs_disabled_warnings': [4267, ],
984 'target_name': 'dns_fuzz_stub',
985 'type': 'executable',
987 '../base/base.gyp:base',
991 'tools/dns_fuzz_stub/dns_fuzz_stub.cc',
993 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
994 'msvs_disabled_warnings': [4267, ],
997 'target_name': 'gdig',
998 'type': 'executable',
1000 '../base/base.gyp:base',
1004 'tools/gdig/file_net_log.cc',
1005 'tools/gdig/gdig.cc',
1009 'target_name': 'get_server_time',
1010 'type': 'executable',
1012 '../base/base.gyp:base',
1013 '../base/base.gyp:base_i18n',
1014 '../url/url.gyp:url_lib',
1018 'tools/get_server_time/get_server_time.cc',
1020 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1021 'msvs_disabled_warnings': [4267, ],
1024 'target_name': 'hpack_example_generator',
1025 'type': 'executable',
1027 '../base/base.gyp:base',
1031 'spdy/fuzzing/hpack_example_generator.cc',
1033 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1034 'msvs_disabled_warnings': [4267, ],
1037 'target_name': 'hpack_fuzz_mutator',
1038 'type': 'executable',
1040 '../base/base.gyp:base',
1044 'spdy/fuzzing/hpack_fuzz_mutator.cc',
1046 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1047 'msvs_disabled_warnings': [4267, ],
1050 'target_name': 'hpack_fuzz_wrapper',
1051 'type': 'executable',
1053 '../base/base.gyp:base',
1057 'spdy/fuzzing/hpack_fuzz_wrapper.cc',
1059 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1060 'msvs_disabled_warnings': [4267, ],
1063 'target_name': 'net_watcher',
1064 'type': 'executable',
1066 '../base/base.gyp:base',
1071 [ 'use_glib == 1', {
1073 '../build/linux/system.gyp:gconf',
1074 '../build/linux/system.gyp:gio',
1080 'tools/net_watcher/net_watcher.cc',
1084 'target_name': 'run_testserver',
1085 'type': 'executable',
1087 '../base/base.gyp:base',
1088 '../base/base.gyp:test_support_base',
1089 '../testing/gtest.gyp:gtest',
1093 'tools/testserver/run_testserver.cc',
1097 'target_name': 'quic_client',
1098 'type': 'executable',
1100 '../base/base.gyp:base',
1101 '../url/url.gyp:url_lib',
1103 'simple_quic_tools',
1106 'tools/quic/quic_simple_client_bin.cc',
1110 'target_name': 'quic_server',
1111 'type': 'executable',
1113 '../base/base.gyp:base',
1116 'simple_quic_tools',
1119 'tools/quic/quic_simple_server_bin.cc',
1123 'target_name': 'stress_cache',
1124 'type': 'executable',
1126 '../base/base.gyp:base',
1131 'tools/stress_cache/stress_cache.cc',
1133 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1134 'msvs_disabled_warnings': [4267, ],
1137 'target_name': 'tld_cleanup',
1138 'type': 'executable',
1140 '../base/base.gyp:base',
1141 '../base/base.gyp:base_i18n',
1142 '../net/tools/tld_cleanup/tld_cleanup.gyp:tld_cleanup_util',
1145 'tools/tld_cleanup/tld_cleanup.cc',
1147 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1148 'msvs_disabled_warnings': [4267, ],
1152 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
1155 'target_name': 'epoll_server',
1156 'type': 'static_library',
1158 '../base/base.gyp:base',
1162 'tools/epoll_server/epoll_server.cc',
1163 'tools/epoll_server/epoll_server.h',
1167 'target_name': 'flip_in_mem_edsm_server_base',
1168 'type': 'static_library',
1173 '../base/base.gyp:base',
1174 '../third_party/boringssl/boringssl.gyp:boringssl',
1180 'tools/dump_cache/url_to_filename_encoder.cc',
1181 'tools/dump_cache/url_to_filename_encoder.h',
1182 'tools/dump_cache/url_utilities.cc',
1183 'tools/dump_cache/url_utilities.h',
1184 'tools/flip_server/acceptor_thread.cc',
1185 'tools/flip_server/acceptor_thread.h',
1186 'tools/flip_server/constants.h',
1187 'tools/flip_server/create_listener.cc',
1188 'tools/flip_server/create_listener.h',
1189 'tools/flip_server/flip_config.cc',
1190 'tools/flip_server/flip_config.h',
1191 'tools/flip_server/http_interface.cc',
1192 'tools/flip_server/http_interface.h',
1193 'tools/flip_server/loadtime_measurement.h',
1194 'tools/flip_server/mem_cache.cc',
1195 'tools/flip_server/mem_cache.h',
1196 'tools/flip_server/output_ordering.cc',
1197 'tools/flip_server/output_ordering.h',
1198 'tools/flip_server/ring_buffer.cc',
1199 'tools/flip_server/ring_buffer.h',
1200 'tools/flip_server/sm_connection.cc',
1201 'tools/flip_server/sm_connection.h',
1202 'tools/flip_server/sm_interface.h',
1203 'tools/flip_server/spdy_interface.cc',
1204 'tools/flip_server/spdy_interface.h',
1205 'tools/flip_server/spdy_ssl.cc',
1206 'tools/flip_server/spdy_ssl.h',
1207 'tools/flip_server/spdy_util.cc',
1208 'tools/flip_server/spdy_util.h',
1209 'tools/flip_server/streamer_interface.cc',
1210 'tools/flip_server/streamer_interface.h',
1214 'target_name': 'flip_in_mem_edsm_server_unittests',
1215 'type': 'executable',
1217 '../testing/gtest.gyp:gtest',
1218 '../testing/gmock.gyp:gmock',
1219 '../third_party/boringssl/boringssl.gyp:boringssl',
1220 'flip_in_mem_edsm_server_base',
1225 'tools/flip_server/flip_test_utils.cc',
1226 'tools/flip_server/flip_test_utils.h',
1227 'tools/flip_server/http_interface_test.cc',
1228 'tools/flip_server/mem_cache_test.cc',
1229 'tools/flip_server/run_all_tests.cc',
1230 'tools/flip_server/spdy_interface_test.cc',
1234 'target_name': 'flip_in_mem_edsm_server',
1235 'type': 'executable',
1240 '../base/base.gyp:base',
1241 'flip_in_mem_edsm_server_base',
1245 'tools/flip_server/flip_in_mem_edsm_server.cc',
1249 'target_name': 'epoll_quic_tools',
1250 'type': 'static_library',
1252 '../base/base.gyp:base',
1253 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
1254 '../url/url.gyp:url_lib',
1261 'tools/quic/quic_client.cc',
1262 'tools/quic/quic_client.h',
1263 'tools/quic/quic_default_packet_writer.cc',
1264 'tools/quic/quic_default_packet_writer.h',
1265 'tools/quic/quic_epoll_clock.cc',
1266 'tools/quic/quic_epoll_clock.h',
1267 'tools/quic/quic_epoll_connection_helper.cc',
1268 'tools/quic/quic_epoll_connection_helper.h',
1269 'tools/quic/quic_packet_reader.cc',
1270 'tools/quic/quic_packet_reader.h',
1271 'tools/quic/quic_packet_writer_wrapper.cc',
1272 'tools/quic/quic_packet_writer_wrapper.h',
1273 'tools/quic/quic_server.cc',
1274 'tools/quic/quic_server.h',
1275 'tools/quic/quic_socket_utils.cc',
1276 'tools/quic/quic_socket_utils.h',
1280 'target_name': 'epoll_quic_client',
1281 'type': 'executable',
1283 '../base/base.gyp:base',
1286 'simple_quic_tools',
1289 'tools/quic/quic_client_bin.cc',
1293 'target_name': 'epoll_quic_server',
1294 'type': 'executable',
1296 '../base/base.gyp:base',
1300 'simple_quic_tools',
1303 'tools/quic/quic_server_bin.cc',
1310 { # The same target as 'net', but with smaller binary size due to
1311 # exclusion of ICU, FTP, FILE and WebSockets support.
1312 'target_name': 'net_small',
1314 'disable_ftp_support': 1,
1315 'disable_file_support': 1,
1316 'enable_websockets': 0,
1317 'use_icu_alternatives_on_android': 1,
1320 '../url/url.gyp:url_lib_use_icu_alternatives_on_android',
1323 'USE_ICU_ALTERNATIVES_ON_ANDROID=1',
1324 'DISABLE_FILE_SUPPORT=1',
1325 'DISABLE_FTP_SUPPORT=1',
1328 'base/net_string_util_icu_alternatives_android.cc',
1329 'base/net_string_util_icu_alternatives_android.h',
1331 'includes': [ 'net_common.gypi' ],
1334 'target_name': 'net_jni_headers',
1337 'android/java/src/org/chromium/net/AndroidCertVerifyResult.java',
1338 'android/java/src/org/chromium/net/AndroidKeyStore.java',
1339 'android/java/src/org/chromium/net/AndroidNetworkLibrary.java',
1340 'android/java/src/org/chromium/net/AndroidPrivateKey.java',
1341 'android/java/src/org/chromium/net/GURLUtils.java',
1342 'android/java/src/org/chromium/net/NetStringUtil.java',
1343 'android/java/src/org/chromium/net/NetworkChangeNotifier.java',
1344 'android/java/src/org/chromium/net/ProxyChangeListener.java',
1345 'android/java/src/org/chromium/net/X509Util.java',
1348 'jni_gen_package': 'net',
1350 'includes': [ '../build/jni_generator.gypi' ],
1353 'target_name': 'net_test_jni_headers',
1356 'android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java',
1359 'jni_gen_package': 'net',
1361 'includes': [ '../build/jni_generator.gypi' ],
1364 'target_name': 'net_java',
1367 'java_in_dir': '../net/android/java',
1370 '../base/base.gyp:base',
1371 'cert_verify_status_android_java',
1372 'certificate_mime_types_java',
1373 'network_change_notifier_types_java',
1375 'private_key_types_java',
1376 'remote_android_keystore_aidl',
1378 'includes': [ '../build/java.gypi' ],
1381 # Processes the interface files for communication with an Android KeyStore
1382 # running in a separate process.
1383 'target_name': 'remote_android_keystore_aidl',
1386 'aidl_interface_file': '../net/android/java/src/org/chromium/net/IRemoteAndroidKeyStoreInterface.aidl',
1389 '../net/android/java/src/org/chromium/net/IRemoteAndroidKeyStore.aidl',
1390 '../net/android/java/src/org/chromium/net/IRemoteAndroidKeyStoreCallbacks.aidl',
1392 'includes': [ '../build/java_aidl.gypi' ],
1395 'target_name': 'net_java_test_support',
1398 'java_in_dir': '../net/test/android/javatests',
1400 'includes': [ '../build/java.gypi' ],
1403 'target_name': 'net_javatests',
1406 'java_in_dir': '../net/android/javatests',
1409 '../base/base.gyp:base',
1410 '../base/base.gyp:base_java_test_support',
1413 'includes': [ '../build/java.gypi' ],
1416 'target_name': 'net_errors_java',
1419 'android/java/NetError.template',
1422 'package_name': 'org/chromium/net',
1423 'template_deps': ['base/net_error_list.h'],
1425 'includes': [ '../build/android/java_cpp_template.gypi' ],
1428 'target_name': 'certificate_mime_types_java',
1431 'source_file': 'base/mime_util.h',
1433 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1436 'target_name': 'cert_verify_status_android_java',
1439 'source_file': 'android/cert_verify_result_android.h',
1441 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1444 'target_name': 'network_change_notifier_types_java',
1447 'source_file': 'base/network_change_notifier.h',
1449 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1452 'target_name': 'private_key_types_java',
1455 'source_file': 'android/keystore.h',
1457 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1460 'target_name': 'net_unittests_apk',
1468 ['v8_use_external_startup_data==1', {
1470 '../v8/tools/gyp/v8.gyp:v8_external_snapshot',
1474 'destination': '<(asset_location)',
1476 '<(PRODUCT_DIR)/natives_blob.bin',
1477 '<(PRODUCT_DIR)/snapshot_blob.bin',
1484 'test_suite_name': 'net_unittests',
1486 ['v8_use_external_startup_data==1', {
1487 'asset_location': '<(PRODUCT_DIR)/net_unittests_apk/assets',
1488 'additional_input_paths': [
1489 '<(PRODUCT_DIR)/net_unittests_apk/assets/natives_blob.bin',
1490 '<(PRODUCT_DIR)/net_unittests_apk/assets/snapshot_blob.bin',
1493 '<(PRODUCT_DIR)/natives_blob.bin',
1494 '<(PRODUCT_DIR)/snapshot_blob.bin',
1499 'includes': [ '../build/apk_test.gypi' ],
1503 ['OS == "android" or OS == "linux"', {
1506 'target_name': 'disk_cache_memory_test',
1507 'type': 'executable',
1509 '../base/base.gyp:base',
1513 'tools/disk_cache_memory_test/disk_cache_memory_test.cc',
1518 ['test_isolation_mode != "noop"', {
1521 'target_name': 'net_unittests_run',
1527 '../build/isolate.gypi',
1530 'net_unittests.isolate',