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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 | 63 |
64 input_files = [ | 64 input_files = [ |
65 'base/auth_cache_unittest.cc', | 65 'base/auth_cache_unittest.cc', |
66 'base/base64_unittest.cc', | 66 'base/base64_unittest.cc', |
67 'base/bzip2_filter_unittest.cc', | 67 'base/bzip2_filter_unittest.cc', |
68 'base/client_socket_pool_unittest.cc', | 68 'base/client_socket_pool_unittest.cc', |
69 'base/cookie_monster_unittest.cc', | 69 'base/cookie_monster_unittest.cc', |
70 'base/cookie_policy_unittest.cc', | 70 'base/cookie_policy_unittest.cc', |
71 'base/data_url_unittest.cc', | 71 'base/data_url_unittest.cc', |
72 'base/escape_unittest.cc', | 72 'base/escape_unittest.cc', |
73 'base/file_input_stream_unittest.cc', | 73 'base/file_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 'disk_cache/addr_unittest.cc', | 83 'disk_cache/addr_unittest.cc', |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 if env['PLATFORM'] in ('darwin', 'posix'): | 122 if env['PLATFORM'] in ('darwin', 'posix'): |
123 input_files.extend([ | 123 input_files.extend([ |
124 'base/ssl_client_socket_unittest.cc', | 124 'base/ssl_client_socket_unittest.cc', |
125 ]) | 125 ]) |
126 | 126 |
127 net_unittests = env.ChromeTestProgram('net_unittests', input_files) | 127 net_unittests = env.ChromeTestProgram('net_unittests', input_files) |
128 | 128 |
129 installed_test = env.Install('$TARGET_ROOT', net_unittests) | 129 installed_test = env.Install('$TARGET_ROOT', net_unittests) |
130 | 130 |
131 env.Alias('net', installed_test) | 131 env.Alias('net', installed_test) |
OLD | NEW |