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

Side by Side Diff: net/net_unittests.scons

Issue 17635: Remove HttpTransactionWinHttp and the --winhttp command-line... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « net/net_lib.scons ('k') | net/proxy/proxy_service.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2006-2008 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 __doc__ = """ 5 __doc__ = """
6 Configuration for building the net_unittests{,.exe} executable. 6 Configuration for building the net_unittests{,.exe} executable.
7 """ 7 """
8 8
9 Import('env') 9 Import('env')
10 10
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 'http/http_auth_handler_basic_unittest.cc', 61 'http/http_auth_handler_basic_unittest.cc',
62 'http/http_auth_handler_digest_unittest.cc', 62 'http/http_auth_handler_digest_unittest.cc',
63 'http/http_auth_unittest.cc', 63 'http/http_auth_unittest.cc',
64 'http/http_cache_unittest.cc', 64 'http/http_cache_unittest.cc',
65 'http/http_chunked_decoder_unittest.cc', 65 'http/http_chunked_decoder_unittest.cc',
66 'http/http_network_layer_unittest.cc', 66 'http/http_network_layer_unittest.cc',
67 'http/http_network_transaction_unittest.cc', 67 'http/http_network_transaction_unittest.cc',
68 'http/http_response_headers_unittest.cc', 68 'http/http_response_headers_unittest.cc',
69 'http/http_transaction_unittest.cc', 69 'http/http_transaction_unittest.cc',
70 'http/http_transaction_unittest.h', 70 'http/http_transaction_unittest.h',
71 'http/http_transaction_winhttp_unittest.cc',
72 'http/http_util_unittest.cc', 71 'http/http_util_unittest.cc',
73 'http/http_vary_data_unittest.cc', 72 'http/http_vary_data_unittest.cc',
74 'http/winhttp_request_throttle_unittest.cc',
75 ]), 73 ]),
76 MSVSFilter('base', [ 74 MSVSFilter('base', [
77 'base/auth_cache_unittest.cc', 75 'base/auth_cache_unittest.cc',
78 'base/base64_unittest.cc', 76 'base/base64_unittest.cc',
79 'base/bzip2_filter_unittest.cc', 77 'base/bzip2_filter_unittest.cc',
80 'base/client_socket_pool_unittest.cc', 78 'base/client_socket_pool_unittest.cc',
81 'base/cookie_monster_unittest.cc', 79 'base/cookie_monster_unittest.cc',
82 'base/cookie_policy_unittest.cc', 80 'base/cookie_policy_unittest.cc',
83 'base/data_url_unittest.cc', 81 'base/data_url_unittest.cc',
84 'base/directory_lister_unittest.cc', 82 'base/directory_lister_unittest.cc',
(...skipping 25 matching lines...) Expand all
110 'proxy/proxy_script_fetcher_unittest.cc', 108 'proxy/proxy_script_fetcher_unittest.cc',
111 'proxy/proxy_service_unittest.cc', 109 'proxy/proxy_service_unittest.cc',
112 ]), 110 ]),
113 ]), 111 ]),
114 ]) 112 ])
115 113
116 if not env.Bit('windows'): 114 if not env.Bit('windows'):
117 input_files.Remove( 115 input_files.Remove(
118 'base/wininet_util_unittest.cc', 116 'base/wininet_util_unittest.cc',
119 'build/precompiled_net$OBJSUFFIX', 117 'build/precompiled_net$OBJSUFFIX',
120 'http/http_transaction_winhttp_unittest.cc',
121 'http/winhttp_request_throttle_unittest.cc',
122 ) 118 )
123 119
124 if env.Bit('linux'): 120 if env.Bit('linux'):
125 # TODO(port): 121 # TODO(port):
126 input_files.Remove( 122 input_files.Remove(
127 'base/sdch_filter_unittest.cc', 123 'base/sdch_filter_unittest.cc',
128 'base/ssl_config_service_unittest.cc', 124 'base/ssl_config_service_unittest.cc',
129 ) 125 )
130 126
131 if env.Bit('mac'): 127 if env.Bit('mac'):
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 UsePrecompiledHeader='1'), 226 UsePrecompiledHeader='1'),
231 ]) 227 ])
232 228
233 # TODO: Remove when we can derive this information 229 # TODO: Remove when we can derive this information
234 p.AddFileConfig('build/precompiled_net.cc', 230 p.AddFileConfig('build/precompiled_net.cc',
235 'Release|Win32', 231 'Release|Win32',
236 ExcludedFromBuild='true', 232 ExcludedFromBuild='true',
237 tools=[ 233 tools=[
238 'VCCLCompilerTool', 234 'VCCLCompilerTool',
239 ]) 235 ])
OLDNEW
« no previous file with comments | « net/net_lib.scons ('k') | net/proxy/proxy_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698