| 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 'http/http_auth_handler_digest_unittest.cc', | 73 'http/http_auth_handler_digest_unittest.cc', |
| 74 'http/http_auth_unittest.cc', | 74 'http/http_auth_unittest.cc', |
| 75 'http/http_cache_unittest.cc', | 75 'http/http_cache_unittest.cc', |
| 76 'http/http_chunked_decoder_unittest.cc', | 76 'http/http_chunked_decoder_unittest.cc', |
| 77 'http/http_network_layer_unittest.cc', | 77 'http/http_network_layer_unittest.cc', |
| 78 'http/http_network_transaction_unittest.cc', | 78 'http/http_network_transaction_unittest.cc', |
| 79 'http/http_response_headers_unittest.cc', | 79 'http/http_response_headers_unittest.cc', |
| 80 'http/http_transaction_unittest.cc', | 80 'http/http_transaction_unittest.cc', |
| 81 'http/http_util_unittest.cc', | 81 'http/http_util_unittest.cc', |
| 82 'http/http_vary_data_unittest.cc', | 82 'http/http_vary_data_unittest.cc', |
| 83 'proxy/proxy_script_fetcher_unittest.cc', |
| 83 'proxy/proxy_service_unittest.cc', | 84 'proxy/proxy_service_unittest.cc', |
| 84 'url_request/url_request_unittest.cc', | 85 'url_request/url_request_unittest.cc', |
| 85 ] | 86 ] |
| 86 | 87 |
| 87 if env['PLATFORM'] == 'win32': | 88 if env['PLATFORM'] == 'win32': |
| 88 input_files.extend([ | 89 input_files.extend([ |
| 89 'base/wininet_util_unittest.cc', | 90 'base/wininet_util_unittest.cc', |
| 90 'http/http_transaction_winhttp_unittest.cc', | 91 'http/http_transaction_winhttp_unittest.cc', |
| 91 'http/winhttp_request_throttle_unittest.cc', | 92 'http/winhttp_request_throttle_unittest.cc', |
| 92 ]) | 93 ]) |
| (...skipping 15 matching lines...) Expand all Loading... |
| 108 # TODO(port): | 109 # TODO(port): |
| 109 to_be_ported_files = [ | 110 to_be_ported_files = [ |
| 110 'base/x509_certificate_unittest.cc', | 111 'base/x509_certificate_unittest.cc', |
| 111 'base/sdch_filter_unittest.cc', | 112 'base/sdch_filter_unittest.cc', |
| 112 'base/ssl_config_service_unittest.cc', | 113 'base/ssl_config_service_unittest.cc', |
| 113 'url_request/url_request_unittest.cc', | 114 'url_request/url_request_unittest.cc', |
| 114 ] | 115 ] |
| 115 input_files = list(set(input_files) - set(to_be_ported_files)) | 116 input_files = list(set(input_files) - set(to_be_ported_files)) |
| 116 | 117 |
| 117 env.ChromeTestProgram('net_unittests', input_files) | 118 env.ChromeTestProgram('net_unittests', input_files) |
| OLD | NEW |