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

Side by Side Diff: net/net_unittests.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_lib.scons ('k') | no next file » | 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 'disk_cache/block_files_unittest.cc', 51 'disk_cache/block_files_unittest.cc',
52 'disk_cache/disk_cache_test_base.cc', 52 'disk_cache/disk_cache_test_base.cc',
53 'disk_cache/disk_cache_test_base.h', 53 'disk_cache/disk_cache_test_base.h',
54 'disk_cache/disk_cache_test_util.cc', 54 'disk_cache/disk_cache_test_util.cc',
55 'disk_cache/disk_cache_test_util.h', 55 'disk_cache/disk_cache_test_util.h',
56 'disk_cache/entry_unittest.cc', 56 'disk_cache/entry_unittest.cc',
57 'disk_cache/mapped_file_unittest.cc', 57 'disk_cache/mapped_file_unittest.cc',
58 'disk_cache/storage_block_unittest.cc', 58 'disk_cache/storage_block_unittest.cc',
59 ]), 59 ]),
60 MSVSFilter('http', [ 60 MSVSFilter('http', [
61 'http/des_unittest.cc',
61 'http/http_auth_cache_unittest.cc', 62 'http/http_auth_cache_unittest.cc',
62 'http/http_auth_handler_basic_unittest.cc', 63 'http/http_auth_handler_basic_unittest.cc',
63 'http/http_auth_handler_digest_unittest.cc', 64 'http/http_auth_handler_digest_unittest.cc',
64 'http/http_auth_unittest.cc', 65 'http/http_auth_unittest.cc',
65 'http/http_cache_unittest.cc', 66 'http/http_cache_unittest.cc',
66 'http/http_chunked_decoder_unittest.cc', 67 'http/http_chunked_decoder_unittest.cc',
67 'http/http_network_layer_unittest.cc', 68 'http/http_network_layer_unittest.cc',
68 'http/http_network_transaction_unittest.cc', 69 'http/http_network_transaction_unittest.cc',
69 'http/http_response_headers_unittest.cc', 70 'http/http_response_headers_unittest.cc',
70 'http/http_transaction_unittest.cc', 71 'http/http_transaction_unittest.cc',
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 UsePrecompiledHeader='1'), 233 UsePrecompiledHeader='1'),
233 ]) 234 ])
234 235
235 # TODO: Remove when we can derive this information 236 # TODO: Remove when we can derive this information
236 p.AddFileConfig('build/precompiled_net.cc', 237 p.AddFileConfig('build/precompiled_net.cc',
237 'Release|Win32', 238 'Release|Win32',
238 ExcludedFromBuild='true', 239 ExcludedFromBuild='true',
239 tools=[ 240 tools=[
240 'VCCLCompilerTool', 241 'VCCLCompilerTool',
241 ]) 242 ])
OLDNEW
« no previous file with comments | « net/net_lib.scons ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698