| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 'http/http_response_headers_unittest.cc', | 69 'http/http_response_headers_unittest.cc', |
| 70 'http/http_transaction_unittest.cc', | 70 'http/http_transaction_unittest.cc', |
| 71 'http/http_transaction_unittest.h', | 71 'http/http_transaction_unittest.h', |
| 72 'http/http_util_unittest.cc', | 72 'http/http_util_unittest.cc', |
| 73 'http/http_vary_data_unittest.cc', | 73 'http/http_vary_data_unittest.cc', |
| 74 ]), | 74 ]), |
| 75 MSVSFilter('base', [ | 75 MSVSFilter('base', [ |
| 76 'base/base64_unittest.cc', | 76 'base/base64_unittest.cc', |
| 77 'base/bzip2_filter_unittest.cc', | 77 'base/bzip2_filter_unittest.cc', |
| 78 'base/client_socket_pool_unittest.cc', | 78 'base/client_socket_pool_unittest.cc', |
| 79 'base/tcp_pinger_unittest.cc', |
| 79 'base/cookie_monster_unittest.cc', | 80 'base/cookie_monster_unittest.cc', |
| 80 'base/cookie_policy_unittest.cc', | 81 'base/cookie_policy_unittest.cc', |
| 81 'base/data_url_unittest.cc', | 82 'base/data_url_unittest.cc', |
| 82 'base/directory_lister_unittest.cc', | 83 'base/directory_lister_unittest.cc', |
| 83 'base/escape_unittest.cc', | 84 'base/escape_unittest.cc', |
| 84 'base/file_stream_unittest.cc', | 85 'base/file_stream_unittest.cc', |
| 85 'base/filter_unittest.cc', | 86 'base/filter_unittest.cc', |
| 86 'base/gzip_filter_unittest.cc', | 87 'base/gzip_filter_unittest.cc', |
| 87 'base/host_resolver_unittest.cc', | 88 'base/host_resolver_unittest.cc', |
| 88 'base/listen_socket_unittest.cc', | 89 'base/listen_socket_unittest.cc', |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 UsePrecompiledHeader='1'), | 231 UsePrecompiledHeader='1'), |
| 231 ]) | 232 ]) |
| 232 | 233 |
| 233 # TODO: Remove when we can derive this information | 234 # TODO: Remove when we can derive this information |
| 234 p.AddFileConfig('build/precompiled_net.cc', | 235 p.AddFileConfig('build/precompiled_net.cc', |
| 235 'Release|Win32', | 236 'Release|Win32', |
| 236 ExcludedFromBuild='true', | 237 ExcludedFromBuild='true', |
| 237 tools=[ | 238 tools=[ |
| 238 'VCCLCompilerTool', | 239 'VCCLCompilerTool', |
| 239 ]) | 240 ]) |
| OLD | NEW |