| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 'base/gzip_filter_unittest.cc', | 75 'base/gzip_filter_unittest.cc', |
| 76 'base/host_resolver_unittest.cc', | 76 'base/host_resolver_unittest.cc', |
| 77 'base/mime_sniffer_unittest.cc', | 77 'base/mime_sniffer_unittest.cc', |
| 78 'base/mime_util_unittest.cc', | 78 'base/mime_util_unittest.cc', |
| 79 'base/net_util_unittest.cc', | 79 'base/net_util_unittest.cc', |
| 80 'base/registry_controlled_domain_unittest.cc', | 80 'base/registry_controlled_domain_unittest.cc', |
| 81 'base/run_all_unittests.cc', | 81 'base/run_all_unittests.cc', |
| 82 'base/ssl_client_socket_unittest.cc', | 82 'base/ssl_client_socket_unittest.cc', |
| 83 'base/tcp_client_socket_unittest.cc', | 83 'base/tcp_client_socket_unittest.cc', |
| 84 'base/test_completion_callback_unittest.cc', | 84 'base/test_completion_callback_unittest.cc', |
| 85 'base/listen_socket_unittest.cc', |
| 86 'base/telnet_server_unittest.cc', |
| 85 'disk_cache/addr_unittest.cc', | 87 'disk_cache/addr_unittest.cc', |
| 86 'disk_cache/backend_unittest.cc', | 88 'disk_cache/backend_unittest.cc', |
| 87 'disk_cache/block_files_unittest.cc', | 89 'disk_cache/block_files_unittest.cc', |
| 88 'disk_cache/disk_cache_test_base.cc', | 90 'disk_cache/disk_cache_test_base.cc', |
| 89 'disk_cache/disk_cache_test_util.cc', | 91 'disk_cache/disk_cache_test_util.cc', |
| 90 'disk_cache/entry_unittest.cc', | 92 'disk_cache/entry_unittest.cc', |
| 91 'disk_cache/mapped_file_unittest.cc', | 93 'disk_cache/mapped_file_unittest.cc', |
| 92 'disk_cache/storage_block_unittest.cc', | 94 'disk_cache/storage_block_unittest.cc', |
| 93 'http/http_auth_cache_unittest.cc', | 95 'http/http_auth_cache_unittest.cc', |
| 94 'http/http_auth_unittest.cc', | 96 'http/http_auth_unittest.cc', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 119 input_files.extend([ | 121 input_files.extend([ |
| 120 '../base/platform_test_mac$OBJSUFFIX', | 122 '../base/platform_test_mac$OBJSUFFIX', |
| 121 ]) | 123 ]) |
| 122 | 124 |
| 123 if env['PLATFORM'] == 'posix': | 125 if env['PLATFORM'] == 'posix': |
| 124 input_files.extend([ | 126 input_files.extend([ |
| 125 'url_request/url_request_unittest.cc', | 127 'url_request/url_request_unittest.cc', |
| 126 ]) | 128 ]) |
| 127 | 129 |
| 128 env.ChromeTestProgram('net_unittests', input_files) | 130 env.ChromeTestProgram('net_unittests', input_files) |
| OLD | NEW |