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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 ) | 58 ) |
59 | 59 |
60 input_files = [ | 60 input_files = [ |
61 'base/auth_cache_unittest.cc', | 61 'base/auth_cache_unittest.cc', |
62 'base/base64_unittest.cc', | 62 'base/base64_unittest.cc', |
63 'base/bzip2_filter_unittest.cc', | 63 'base/bzip2_filter_unittest.cc', |
64 'base/client_socket_pool_unittest.cc', | 64 'base/client_socket_pool_unittest.cc', |
65 'base/cookie_monster_unittest.cc', | 65 'base/cookie_monster_unittest.cc', |
66 'base/cookie_policy_unittest.cc', | 66 'base/cookie_policy_unittest.cc', |
67 'base/data_url_unittest.cc', | 67 'base/data_url_unittest.cc', |
| 68 'base/directory_lister_unittest.cc', |
68 'base/escape_unittest.cc', | 69 'base/escape_unittest.cc', |
69 'base/file_stream_unittest.cc', | 70 'base/file_stream_unittest.cc', |
70 'base/filter_unittest.cc', | 71 'base/filter_unittest.cc', |
71 'base/gzip_filter_unittest.cc', | 72 'base/gzip_filter_unittest.cc', |
72 'base/host_resolver_unittest.cc', | 73 'base/host_resolver_unittest.cc', |
73 'base/mime_sniffer_unittest.cc', | 74 'base/mime_sniffer_unittest.cc', |
74 'base/mime_util_unittest.cc', | 75 'base/mime_util_unittest.cc', |
75 'base/net_util_unittest.cc', | 76 'base/net_util_unittest.cc', |
76 'base/registry_controlled_domain_unittest.cc', | 77 'base/registry_controlled_domain_unittest.cc', |
77 'base/run_all_unittests.cc', | 78 'base/run_all_unittests.cc', |
(...skipping 19 matching lines...) Expand all Loading... |
97 'http/http_network_transaction_unittest.cc', | 98 'http/http_network_transaction_unittest.cc', |
98 'http/http_network_layer_unittest.cc', | 99 'http/http_network_layer_unittest.cc', |
99 'http/http_response_headers_unittest.cc', | 100 'http/http_response_headers_unittest.cc', |
100 'http/http_transaction_unittest.cc', | 101 'http/http_transaction_unittest.cc', |
101 'http/http_util_unittest.cc', | 102 'http/http_util_unittest.cc', |
102 'http/http_vary_data_unittest.cc', | 103 'http/http_vary_data_unittest.cc', |
103 ] | 104 ] |
104 | 105 |
105 if env['PLATFORM'] == 'win32': | 106 if env['PLATFORM'] == 'win32': |
106 input_files.extend([ | 107 input_files.extend([ |
107 'base/directory_lister_unittest.cc', | |
108 'base/sdch_filter_unittest.cc', | 108 'base/sdch_filter_unittest.cc', |
109 'base/ssl_config_service_unittest.cc', | 109 'base/ssl_config_service_unittest.cc', |
110 'base/wininet_util_unittest.cc', | 110 'base/wininet_util_unittest.cc', |
111 'http/http_transaction_winhttp_unittest.cc', | 111 'http/http_transaction_winhttp_unittest.cc', |
112 'http/winhttp_request_throttle_unittest.cc', | 112 'http/winhttp_request_throttle_unittest.cc', |
113 'url_request/url_request_unittest.cc', | 113 'url_request/url_request_unittest.cc', |
114 ]) | 114 ]) |
115 | 115 |
116 if env['PLATFORM'] == 'darwin': | 116 if env['PLATFORM'] == 'darwin': |
117 input_files.extend([ | 117 input_files.extend([ |
118 '../base/platform_test_mac$OBJSUFFIX', | 118 '../base/platform_test_mac$OBJSUFFIX', |
119 ]) | 119 ]) |
120 | 120 |
121 if env['PLATFORM'] == 'posix': | 121 if env['PLATFORM'] == 'posix': |
122 input_files.extend([ | 122 input_files.extend([ |
123 'url_request/url_request_unittest.cc', | 123 'url_request/url_request_unittest.cc', |
124 ]) | 124 ]) |
125 | 125 |
126 env.ChromeTestProgram('net_unittests', input_files) | 126 env.ChromeTestProgram('net_unittests', input_files) |
OLD | NEW |