Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Side by Side Diff: net/net.gyp

Issue 348803003: Refactor tcp socket and unix domain socket. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix net_unittests for iOS Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'use_tracing_cache_backend%': 0, 10 'use_tracing_cache_backend%': 0,
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 'dns/mdns_client_impl.h', 385 'dns/mdns_client_impl.h',
386 'dns/record_parsed.cc', 386 'dns/record_parsed.cc',
387 'dns/record_parsed.h', 387 'dns/record_parsed.h',
388 'dns/record_rdata.cc', 388 'dns/record_rdata.cc',
389 'dns/record_rdata.h', 389 'dns/record_rdata.h',
390 ] 390 ]
391 }], 391 }],
392 [ 'OS == "win"', { 392 [ 'OS == "win"', {
393 'sources!': [ 393 'sources!': [
394 'http/http_auth_handler_ntlm_portable.cc', 394 'http/http_auth_handler_ntlm_portable.cc',
395 'socket/socket_libevent.cc',
396 'socket/socket_libevent.h',
395 'socket/tcp_socket_libevent.cc', 397 'socket/tcp_socket_libevent.cc',
396 'socket/tcp_socket_libevent.h', 398 'socket/tcp_socket_libevent.h',
397 'udp/udp_socket_libevent.cc', 399 'udp/udp_socket_libevent.cc',
398 'udp/udp_socket_libevent.h', 400 'udp/udp_socket_libevent.h',
399 ], 401 ],
400 'dependencies': [ 402 'dependencies': [
401 '../third_party/nss/nss.gyp:nspr', 403 '../third_party/nss/nss.gyp:nspr',
402 '../third_party/nss/nss.gyp:nss', 404 '../third_party/nss/nss.gyp:nss',
403 'third_party/nss/ssl.gyp:libssl', 405 'third_party/nss/ssl.gyp:libssl',
404 ], 406 ],
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
777 'proxy/proxy_script_fetcher_impl_unittest.cc', 779 'proxy/proxy_script_fetcher_impl_unittest.cc',
778 'socket/ssl_client_socket_unittest.cc', 780 'socket/ssl_client_socket_unittest.cc',
779 'url_request/url_fetcher_impl_unittest.cc', 781 'url_request/url_fetcher_impl_unittest.cc',
780 'url_request/url_request_context_builder_unittest.cc', 782 'url_request/url_request_context_builder_unittest.cc',
781 # Needs GetAppOutput(). 783 # Needs GetAppOutput().
782 'test/python_utils_unittest.cc', 784 'test/python_utils_unittest.cc',
783 785
784 # The following tests are disabled because they don't apply to 786 # The following tests are disabled because they don't apply to
785 # iOS. 787 # iOS.
786 # OS is not "linux" or "freebsd" or "openbsd". 788 # OS is not "linux" or "freebsd" or "openbsd".
787 'socket/unix_domain_socket_posix_unittest.cc', 789 'socket/unix_domain_client_socket_posix_unittest.cc',
790 'socket/unix_domain_listen_socket_posix_unittest.cc',
791 'socket/unix_domain_server_socket_posix_unittest.cc',
788 792
789 # See bug http://crbug.com/344533. 793 # See bug http://crbug.com/344533.
790 'disk_cache/blockfile/index_table_v3_unittest.cc', 794 'disk_cache/blockfile/index_table_v3_unittest.cc',
791 ], 795 ],
792 }], 796 }],
793 [ 'OS == "android"', { 797 [ 'OS == "android"', {
794 'dependencies': [ 798 'dependencies': [
795 '../third_party/openssl/openssl.gyp:openssl', 799 '../third_party/openssl/openssl.gyp:openssl',
796 ], 800 ],
797 'sources!': [ 801 'sources!': [
(...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after
1668 'net_unittests.isolate', 1672 'net_unittests.isolate',
1669 ], 1673 ],
1670 'sources': [ 1674 'sources': [
1671 'net_unittests.isolate', 1675 'net_unittests.isolate',
1672 ], 1676 ],
1673 }, 1677 },
1674 ], 1678 ],
1675 }], 1679 }],
1676 ], 1680 ],
1677 } 1681 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | net/net.gypi » ('j') | net/socket/server_socket.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698