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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 'base/file_stream_unittest.cc', | 47 'base/file_stream_unittest.cc', |
48 'base/filter_unittest.cc', | 48 'base/filter_unittest.cc', |
49 'base/gzip_filter_unittest.cc', | 49 'base/gzip_filter_unittest.cc', |
50 'base/host_resolver_unittest.cc', | 50 'base/host_resolver_unittest.cc', |
51 'base/listen_socket_unittest.cc', | 51 'base/listen_socket_unittest.cc', |
52 'base/mime_sniffer_unittest.cc', | 52 'base/mime_sniffer_unittest.cc', |
53 'base/mime_util_unittest.cc', | 53 'base/mime_util_unittest.cc', |
54 'base/net_util_unittest.cc', | 54 'base/net_util_unittest.cc', |
55 'base/registry_controlled_domain_unittest.cc', | 55 'base/registry_controlled_domain_unittest.cc', |
56 'base/run_all_unittests.cc', | 56 'base/run_all_unittests.cc', |
| 57 'base/ssl_test_util.cc', |
57 'base/ssl_client_socket_unittest.cc', | 58 'base/ssl_client_socket_unittest.cc', |
58 'base/tcp_client_socket_unittest.cc', | 59 'base/tcp_client_socket_unittest.cc', |
59 'base/telnet_server_unittest.cc', | 60 'base/telnet_server_unittest.cc', |
60 'base/test_completion_callback_unittest.cc', | 61 'base/test_completion_callback_unittest.cc', |
61 'base/x509_certificate_unittest.cc', | 62 'base/x509_certificate_unittest.cc', |
62 'disk_cache/addr_unittest.cc', | 63 'disk_cache/addr_unittest.cc', |
63 'disk_cache/backend_unittest.cc', | 64 'disk_cache/backend_unittest.cc', |
64 'disk_cache/block_files_unittest.cc', | 65 'disk_cache/block_files_unittest.cc', |
65 'disk_cache/disk_cache_test_base.cc', | 66 'disk_cache/disk_cache_test_base.cc', |
66 'disk_cache/disk_cache_test_util.cc', | 67 'disk_cache/disk_cache_test_util.cc', |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 # TODO(port): | 108 # TODO(port): |
108 to_be_ported_files = [ | 109 to_be_ported_files = [ |
109 'base/x509_certificate_unittest.cc', | 110 'base/x509_certificate_unittest.cc', |
110 'base/sdch_filter_unittest.cc', | 111 'base/sdch_filter_unittest.cc', |
111 'base/ssl_config_service_unittest.cc', | 112 'base/ssl_config_service_unittest.cc', |
112 'url_request/url_request_unittest.cc', | 113 'url_request/url_request_unittest.cc', |
113 ] | 114 ] |
114 input_files = list(set(input_files) - set(to_be_ported_files)) | 115 input_files = list(set(input_files) - set(to_be_ported_files)) |
115 | 116 |
116 env.ChromeTestProgram('net_unittests', input_files) | 117 env.ChromeTestProgram('net_unittests', input_files) |
OLD | NEW |