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

Side by Side Diff: net/net_lib.scons

Issue 28144: Implement the NTLM authentication scheme by porting... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Final upload before checkin Created 11 years, 9 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.xcodeproj/project.pbxproj ('k') | net/net_unittests.scons » ('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 net.lib / libnet.a. 6 Configuration for building net.lib / libnet.a.
7 """ 7 """
8 8
9 Import('env') 9 Import('env')
10 10
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 'url_request/url_request_job_tracker.h', 156 'url_request/url_request_job_tracker.h',
157 'url_request/url_request_simple_job.cc', 157 'url_request/url_request_simple_job.cc',
158 'url_request/url_request_simple_job.h', 158 'url_request/url_request_simple_job.h',
159 'url_request/url_request_status.h', 159 'url_request/url_request_status.h',
160 'url_request/url_request_test_job.cc', 160 'url_request/url_request_test_job.cc',
161 'url_request/url_request_test_job.h', 161 'url_request/url_request_test_job.h',
162 'url_request/url_request_view_cache_job.cc', 162 'url_request/url_request_view_cache_job.cc',
163 'url_request/url_request_view_cache_job.h', 163 'url_request/url_request_view_cache_job.h',
164 ]), 164 ]),
165 MSVSFilter('http', [ 165 MSVSFilter('http', [
166 'http/des.cc',
167 'http/des.h',
166 'http/http_atom_list.h', 168 'http/http_atom_list.h',
167 'http/http_auth.cc', 169 'http/http_auth.cc',
168 'http/http_auth.h', 170 'http/http_auth.h',
169 'http/http_auth_cache.cc', 171 'http/http_auth_cache.cc',
170 'http/http_auth_cache.h', 172 'http/http_auth_cache.h',
171 'http/http_auth_handler.h', 173 'http/http_auth_handler.h',
172 'http/http_auth_handler.cc', 174 'http/http_auth_handler.cc',
173 'http/http_auth_handler_basic.cc', 175 'http/http_auth_handler_basic.cc',
174 'http/http_auth_handler_basic.h', 176 'http/http_auth_handler_basic.h',
175 'http/http_auth_handler_digest.cc', 177 'http/http_auth_handler_digest.cc',
176 'http/http_auth_handler_digest.h', 178 'http/http_auth_handler_digest.h',
179 'http/http_auth_handler_ntlm.cc',
180 'http/http_auth_handler_ntlm.h',
177 'http/http_cache.cc', 181 'http/http_cache.cc',
178 'http/http_cache.h', 182 'http/http_cache.h',
179 'http/http_chunked_decoder.cc', 183 'http/http_chunked_decoder.cc',
180 'http/http_chunked_decoder.h', 184 'http/http_chunked_decoder.h',
181 'http/http_network_layer.cc', 185 'http/http_network_layer.cc',
182 'http/http_network_layer.h', 186 'http/http_network_layer.h',
183 'http/http_network_session.h', 187 'http/http_network_session.h',
184 'http/http_network_transaction.cc', 188 'http/http_network_transaction.cc',
185 'http/http_network_transaction.h', 189 'http/http_network_transaction.h',
186 'http/http_request_info.h', 190 'http/http_request_info.h',
187 'http/http_response_headers.cc', 191 'http/http_response_headers.cc',
188 'http/http_response_headers.h', 192 'http/http_response_headers.h',
189 'http/http_response_info.cc', 193 'http/http_response_info.cc',
190 'http/http_response_info.h', 194 'http/http_response_info.h',
191 'http/http_transaction.h', 195 'http/http_transaction.h',
192 'http/http_transaction_factory.h', 196 'http/http_transaction_factory.h',
193 'http/http_util.cc', 197 'http/http_util.cc',
194 'http/http_util.h', 198 'http/http_util.h',
195 'http/http_vary_data.cc', 199 'http/http_vary_data.cc',
196 'http/http_vary_data.h', 200 'http/http_vary_data.h',
201 'http/md4.cc',
202 'http/md4.h',
197 ]), 203 ]),
198 MSVSFilter('disk_cache', [ 204 MSVSFilter('disk_cache', [
199 'disk_cache/addr.cc', 205 'disk_cache/addr.cc',
200 'disk_cache/addr.h', 206 'disk_cache/addr.h',
201 'disk_cache/backend_impl.cc', 207 'disk_cache/backend_impl.cc',
202 'disk_cache/backend_impl.h', 208 'disk_cache/backend_impl.h',
203 'disk_cache/block_files.cc', 209 'disk_cache/block_files.cc',
204 'disk_cache/block_files.h', 210 'disk_cache/block_files.h',
205 'disk_cache/cache_util.h', 211 'disk_cache/cache_util.h',
206 'disk_cache/cache_util_win.cc', 212 'disk_cache/cache_util_win.cc',
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 UsePrecompiledHeader='1'), 422 UsePrecompiledHeader='1'),
417 ]) 423 ])
418 424
419 # TODO(sgk): remove when we can derive this information 425 # TODO(sgk): remove when we can derive this information
420 p.AddFileConfig('build/precompiled_net.cc', 426 p.AddFileConfig('build/precompiled_net.cc',
421 'Release|Win32', 427 'Release|Win32',
422 ExcludedFromBuild='true', 428 ExcludedFromBuild='true',
423 tools=[ 429 tools=[
424 'VCCLCompilerTool', 430 'VCCLCompilerTool',
425 ]) 431 ])
OLDNEW
« no previous file with comments | « net/net.xcodeproj/project.pbxproj ('k') | net/net_unittests.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698