| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 ]) |
| OLD | NEW |