| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 'http/http_auth_handler_digest.cc', | 71 'http/http_auth_handler_digest.cc', |
| 72 'http/http_cache.cc', | 72 'http/http_cache.cc', |
| 73 'http/http_chunked_decoder.cc', | 73 'http/http_chunked_decoder.cc', |
| 74 'http/http_response_headers.cc', | 74 'http/http_response_headers.cc', |
| 75 'http/http_util.cc', | 75 'http/http_util.cc', |
| 76 'http/http_vary_data.cc', | 76 'http/http_vary_data.cc', |
| 77 'url_request/mime_sniffer_proxy.cc', | 77 'url_request/mime_sniffer_proxy.cc', |
| 78 'url_request/url_request.cc', | 78 'url_request/url_request.cc', |
| 79 'url_request/url_request_about_job.cc', | 79 'url_request/url_request_about_job.cc', |
| 80 'url_request/url_request_error_job.cc', | 80 'url_request/url_request_error_job.cc', |
| 81 'url_request/url_request_file_job.cc', |
| 81 'url_request/url_request_http_job.cc', | 82 'url_request/url_request_http_job.cc', |
| 82 'url_request/url_request_job.cc', | 83 'url_request/url_request_job.cc', |
| 83 'url_request/url_request_job_metrics.cc', | 84 'url_request/url_request_job_metrics.cc', |
| 84 'url_request/url_request_job_tracker.cc', | 85 'url_request/url_request_job_tracker.cc', |
| 85 'url_request/url_request_simple_job.cc', | 86 'url_request/url_request_simple_job.cc', |
| 86 'url_request/url_request_test_job.cc', | 87 'url_request/url_request_test_job.cc', |
| 87 'url_request/url_request_view_cache_job.cc', | 88 'url_request/url_request_view_cache_job.cc', |
| 88 ] | 89 ] |
| 89 | 90 |
| 90 if env['PLATFORM'] == 'win32': | 91 if env['PLATFORM'] == 'win32': |
| (...skipping 10 matching lines...) Expand all Loading... |
| 101 'base/wininet_util.cc', | 102 'base/wininet_util.cc', |
| 102 'base/winsock_init.cc', | 103 'base/winsock_init.cc', |
| 103 'http/http_network_layer.cc', | 104 'http/http_network_layer.cc', |
| 104 'http/http_network_transaction.cc', | 105 'http/http_network_transaction.cc', |
| 105 'http/http_transaction_winhttp.cc', | 106 'http/http_transaction_winhttp.cc', |
| 106 'http/winhttp_request_throttle.cc', | 107 'http/winhttp_request_throttle.cc', |
| 107 'proxy/proxy_resolver_fixed.cc', | 108 'proxy/proxy_resolver_fixed.cc', |
| 108 'proxy/proxy_resolver_winhttp.cc', | 109 'proxy/proxy_resolver_winhttp.cc', |
| 109 'proxy/proxy_service.cc', | 110 'proxy/proxy_service.cc', |
| 110 'url_request/url_request_file_dir_job.cc', | 111 'url_request/url_request_file_dir_job.cc', |
| 111 'url_request/url_request_file_job.cc', | |
| 112 'url_request/url_request_filter.cc', | 112 'url_request/url_request_filter.cc', |
| 113 'url_request/url_request_ftp_job.cc', | 113 'url_request/url_request_ftp_job.cc', |
| 114 'url_request/url_request_inet_job.cc', | 114 'url_request/url_request_inet_job.cc', |
| 115 'url_request/url_request_job_manager.cc', | 115 'url_request/url_request_job_manager.cc', |
| 116 ]) | 116 ]) |
| 117 | 117 |
| 118 if env['PLATFORM'] == 'win32': | 118 if env['PLATFORM'] == 'win32': |
| 119 input_files.extend([ | 119 input_files.extend([ |
| 120 'base/file_input_stream_win.cc', | 120 'base/file_input_stream_win.cc', |
| 121 'base/net_util_win.cc', | 121 'base/net_util_win.cc', |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 # TODO: We need to port tld_cleanup before this will work on other | 342 # TODO: We need to port tld_cleanup before this will work on other |
| 343 # platforms. | 343 # platforms. |
| 344 sconscript_files = [ | 344 sconscript_files = [ |
| 345 'tools/tld_cleanup/SConscript', | 345 'tools/tld_cleanup/SConscript', |
| 346 ] | 346 ] |
| 347 | 347 |
| 348 SConscript(sconscript_files, exports=['env']) | 348 SConscript(sconscript_files, exports=['env']) |
| 349 | 349 |
| 350 | 350 |
| 351 env.Alias('net', ['.', installed_tests]) | 351 env.Alias('net', ['.', installed_tests]) |
| OLD | NEW |