| 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 Import('env') | 5 Import('env') |
| 6 | 6 |
| 7 env_res = env.Clone() | 7 env_res = env.Clone() |
| 8 env_tests = env.Clone() | 8 env_tests = env.Clone() |
| 9 env = env.Clone() | 9 env = env.Clone() |
| 10 | 10 |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 'base/data_url_unittest.cc', | 216 'base/data_url_unittest.cc', |
| 217 'base/escape_unittest.cc', | 217 'base/escape_unittest.cc', |
| 218 'base/gzip_filter_unittest.cc', | 218 'base/gzip_filter_unittest.cc', |
| 219 'base/host_resolver_unittest.cc', | 219 'base/host_resolver_unittest.cc', |
| 220 'base/mime_sniffer_unittest.cc', | 220 'base/mime_sniffer_unittest.cc', |
| 221 'base/mime_util_unittest.cc', | 221 'base/mime_util_unittest.cc', |
| 222 'base/net_util_unittest.cc', | 222 'base/net_util_unittest.cc', |
| 223 'base/registry_controlled_domain_unittest.cc', | 223 'base/registry_controlled_domain_unittest.cc', |
| 224 'base/run_all_unittests.cc', | 224 'base/run_all_unittests.cc', |
| 225 'disk_cache/addr_unittest.cc', | 225 'disk_cache/addr_unittest.cc', |
| 226 'disk_cache/backend_unittest.cc', |
| 226 'disk_cache/block_files_unittest.cc', | 227 'disk_cache/block_files_unittest.cc', |
| 227 'disk_cache/disk_cache_test_base.cc', | 228 'disk_cache/disk_cache_test_base.cc', |
| 228 'disk_cache/disk_cache_test_util.cc', | 229 'disk_cache/disk_cache_test_util.cc', |
| 229 'disk_cache/entry_unittest.cc', | 230 'disk_cache/entry_unittest.cc', |
| 230 'disk_cache/mapped_file_unittest.cc', | 231 'disk_cache/mapped_file_unittest.cc', |
| 231 'disk_cache/storage_block_unittest.cc', | 232 'disk_cache/storage_block_unittest.cc', |
| 232 'http/http_chunked_decoder_unittest.cc', | 233 'http/http_chunked_decoder_unittest.cc', |
| 233 'http/http_response_headers_unittest.cc', | 234 'http/http_response_headers_unittest.cc', |
| 234 'http/http_vary_data_unittest.cc', | 235 'http/http_vary_data_unittest.cc', |
| 235 ] | 236 ] |
| 236 | 237 |
| 237 if env['PLATFORM'] == 'win32': | 238 if env['PLATFORM'] == 'win32': |
| 238 unittest_files.extend([ | 239 unittest_files.extend([ |
| 239 'base/cookie_policy_unittest.cc', | 240 'base/cookie_policy_unittest.cc', |
| 240 'base/directory_lister_unittest.cc', | 241 'base/directory_lister_unittest.cc', |
| 241 'base/ssl_config_service_unittest.cc', | 242 'base/ssl_config_service_unittest.cc', |
| 242 'base/ssl_client_socket_unittest.cc', | 243 'base/ssl_client_socket_unittest.cc', |
| 243 'base/tcp_client_socket_unittest.cc', | 244 'base/tcp_client_socket_unittest.cc', |
| 244 'base/wininet_util_unittest.cc', | 245 'base/wininet_util_unittest.cc', |
| 245 'disk_cache/backend_unittest.cc', | |
| 246 'http/http_cache_unittest.cc', | 246 'http/http_cache_unittest.cc', |
| 247 'http/http_network_layer_unittest.cc', | 247 'http/http_network_layer_unittest.cc', |
| 248 'http/http_network_transaction_unittest.cc', | 248 'http/http_network_transaction_unittest.cc', |
| 249 'http/http_transaction_unittest.cc', | 249 'http/http_transaction_unittest.cc', |
| 250 'http/http_transaction_winhttp_unittest.cc', | 250 'http/http_transaction_winhttp_unittest.cc', |
| 251 'http/http_util_unittest.cc', | 251 'http/http_util_unittest.cc', |
| 252 'http/winhttp_request_throttle_unittest.cc', | 252 'http/winhttp_request_throttle_unittest.cc', |
| 253 'url_request/url_request_unittest.cc', | 253 'url_request/url_request_unittest.cc', |
| 254 ]) | 254 ]) |
| 255 | 255 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 | 327 |
| 328 SConscript(sconscript_files, exports=['env']) | 328 SConscript(sconscript_files, exports=['env']) |
| 329 | 329 |
| 330 | 330 |
| 331 # Setup alias for building all parts of net. | 331 # Setup alias for building all parts of net. |
| 332 if env['PLATFORM'] == 'win32': | 332 if env['PLATFORM'] == 'win32': |
| 333 icudata = '../icudt38.dll' | 333 icudata = '../icudt38.dll' |
| 334 else: | 334 else: |
| 335 icudata = '../icudt38l.dat' | 335 icudata = '../icudt38l.dat' |
| 336 env.Alias('net', ['.', installed_tests, icudata]) | 336 env.Alias('net', ['.', installed_tests, icudata]) |
| OLD | NEW |