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

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: Addressed comments and fixed unittests for chrome os. Created 6 years, 5 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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
778 'proxy/proxy_script_fetcher_impl_unittest.cc', 780 'proxy/proxy_script_fetcher_impl_unittest.cc',
779 'socket/ssl_client_socket_unittest.cc', 781 'socket/ssl_client_socket_unittest.cc',
780 'url_request/url_fetcher_impl_unittest.cc', 782 'url_request/url_fetcher_impl_unittest.cc',
781 'url_request/url_request_context_builder_unittest.cc', 783 'url_request/url_request_context_builder_unittest.cc',
782 # Needs GetAppOutput(). 784 # Needs GetAppOutput().
783 'test/python_utils_unittest.cc', 785 'test/python_utils_unittest.cc',
784 786
785 # The following tests are disabled because they don't apply to 787 # The following tests are disabled because they don't apply to
786 # iOS. 788 # iOS.
787 # OS is not "linux" or "freebsd" or "openbsd". 789 # OS is not "linux" or "freebsd" or "openbsd".
788 'socket/unix_domain_socket_posix_unittest.cc', 790 'socket/unix_domain_client_socket_posix_unittest.cc',
791 'socket/unix_domain_listen_socket_posix_unittest.cc',
792 'socket/unix_domain_server_socket_posix_unittest.cc',
789 793
790 # See bug http://crbug.com/344533. 794 # See bug http://crbug.com/344533.
791 'disk_cache/blockfile/index_table_v3_unittest.cc', 795 'disk_cache/blockfile/index_table_v3_unittest.cc',
792 ], 796 ],
793 }], 797 }],
794 [ 'OS == "android"', { 798 [ 'OS == "android"', {
795 'dependencies': [ 799 'dependencies': [
796 '../third_party/openssl/openssl.gyp:openssl', 800 '../third_party/openssl/openssl.gyp:openssl',
797 ], 801 ],
798 'sources!': [ 802 'sources!': [
(...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after
1700 'net_unittests.isolate', 1704 'net_unittests.isolate',
1701 ], 1705 ],
1702 'sources': [ 1706 'sources': [
1703 'net_unittests.isolate', 1707 'net_unittests.isolate',
1704 ], 1708 ],
1705 }, 1709 },
1706 ], 1710 ],
1707 }], 1711 }],
1708 ], 1712 ],
1709 } 1713 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698