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

Side by Side Diff: net/net.gyp

Issue 376323002: Refactor unix domain socket. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make all connect in unittests synchronous. 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 772 matching lines...) Expand 10 before | Expand all | Expand 10 after
783 'proxy/proxy_script_fetcher_impl_unittest.cc', 783 'proxy/proxy_script_fetcher_impl_unittest.cc',
784 'socket/ssl_client_socket_unittest.cc', 784 'socket/ssl_client_socket_unittest.cc',
785 'url_request/url_fetcher_impl_unittest.cc', 785 'url_request/url_fetcher_impl_unittest.cc',
786 'url_request/url_request_context_builder_unittest.cc', 786 'url_request/url_request_context_builder_unittest.cc',
787 # Needs GetAppOutput(). 787 # Needs GetAppOutput().
788 'test/python_utils_unittest.cc', 788 'test/python_utils_unittest.cc',
789 789
790 # The following tests are disabled because they don't apply to 790 # The following tests are disabled because they don't apply to
791 # iOS. 791 # iOS.
792 # OS is not "linux" or "freebsd" or "openbsd". 792 # OS is not "linux" or "freebsd" or "openbsd".
793 'socket/unix_domain_client_socket_posix_unittest.cc',
793 'socket/unix_domain_socket_posix_unittest.cc', 794 'socket/unix_domain_socket_posix_unittest.cc',
795 'socket/unix_domain_server_socket_posix_unittest.cc',
794 796
795 # See bug http://crbug.com/344533. 797 # See bug http://crbug.com/344533.
796 'disk_cache/blockfile/index_table_v3_unittest.cc', 798 'disk_cache/blockfile/index_table_v3_unittest.cc',
797 ], 799 ],
798 }], 800 }],
799 [ 'OS == "android"', { 801 [ 'OS == "android"', {
800 'dependencies': [ 802 'dependencies': [
801 '../third_party/openssl/openssl.gyp:openssl', 803 '../third_party/openssl/openssl.gyp:openssl',
802 ], 804 ],
803 'sources!': [ 805 'sources!': [
(...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after
1704 'net_unittests.isolate', 1706 'net_unittests.isolate',
1705 ], 1707 ],
1706 'sources': [ 1708 'sources': [
1707 'net_unittests.isolate', 1709 'net_unittests.isolate',
1708 ], 1710 ],
1709 }, 1711 },
1710 ], 1712 ],
1711 }], 1713 }],
1712 ], 1714 ],
1713 } 1715 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698