| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 'base/file_input_stream_unittest.cc', | 73 'base/file_input_stream_unittest.cc', |
| 74 'base/gzip_filter_unittest.cc', | 74 'base/gzip_filter_unittest.cc', |
| 75 'base/host_resolver_unittest.cc', | 75 'base/host_resolver_unittest.cc', |
| 76 'base/mime_sniffer_unittest.cc', | 76 'base/mime_sniffer_unittest.cc', |
| 77 'base/mime_util_unittest.cc', | 77 'base/mime_util_unittest.cc', |
| 78 'base/net_util_unittest.cc', | 78 'base/net_util_unittest.cc', |
| 79 'base/registry_controlled_domain_unittest.cc', | 79 'base/registry_controlled_domain_unittest.cc', |
| 80 'base/run_all_unittests.cc', | 80 'base/run_all_unittests.cc', |
| 81 'base/tcp_client_socket_unittest.cc', | 81 'base/tcp_client_socket_unittest.cc', |
| 82 'base/test_completion_callback_unittest.cc', | 82 'base/test_completion_callback_unittest.cc', |
| 83 'base/listen_socket_unittest.cc', |
| 84 'base/telnet_server_unittest.cc', |
| 83 'disk_cache/addr_unittest.cc', | 85 'disk_cache/addr_unittest.cc', |
| 84 'disk_cache/backend_unittest.cc', | 86 'disk_cache/backend_unittest.cc', |
| 85 'disk_cache/block_files_unittest.cc', | 87 'disk_cache/block_files_unittest.cc', |
| 86 'disk_cache/disk_cache_test_base.cc', | 88 'disk_cache/disk_cache_test_base.cc', |
| 87 'disk_cache/disk_cache_test_util.cc', | 89 'disk_cache/disk_cache_test_util.cc', |
| 88 'disk_cache/entry_unittest.cc', | 90 'disk_cache/entry_unittest.cc', |
| 89 'disk_cache/mapped_file_unittest.cc', | 91 'disk_cache/mapped_file_unittest.cc', |
| 90 'disk_cache/storage_block_unittest.cc', | 92 'disk_cache/storage_block_unittest.cc', |
| 91 'http/http_auth_unittest.cc', | 93 'http/http_auth_unittest.cc', |
| 92 'http/http_auth_handler_basic_unittest.cc', | 94 'http/http_auth_handler_basic_unittest.cc', |
| (...skipping 28 matching lines...) Expand all Loading... |
| 121 if env['PLATFORM'] in ('darwin', 'posix'): | 123 if env['PLATFORM'] in ('darwin', 'posix'): |
| 122 input_files.extend([ | 124 input_files.extend([ |
| 123 'base/ssl_client_socket_unittest.cc', | 125 'base/ssl_client_socket_unittest.cc', |
| 124 ]) | 126 ]) |
| 125 | 127 |
| 126 net_unittests = env.ChromeTestProgram('net_unittests', input_files) | 128 net_unittests = env.ChromeTestProgram('net_unittests', input_files) |
| 127 | 129 |
| 128 installed_test = env.Install('$TARGET_ROOT', net_unittests) | 130 installed_test = env.Install('$TARGET_ROOT', net_unittests) |
| 129 | 131 |
| 130 env.Alias('net', installed_test) | 132 env.Alias('net', installed_test) |
| OLD | NEW |