| 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 net.lib / libnet.a. | 6 Configuration for building net.lib / libnet.a. |
| 7 """ | 7 """ |
| 8 | 8 |
| 9 Import('env') | 9 Import('env') |
| 10 | 10 |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 'http/http_response_headers.cc', | 76 'http/http_response_headers.cc', |
| 77 'http/http_transaction_winhttp.cc', | 77 'http/http_transaction_winhttp.cc', |
| 78 'http/http_util.cc', | 78 'http/http_util.cc', |
| 79 'http/http_vary_data.cc', | 79 'http/http_vary_data.cc', |
| 80 'http/winhttp_request_throttle.cc', | 80 'http/winhttp_request_throttle.cc', |
| 81 'proxy/proxy_resolver_fixed.cc', | 81 'proxy/proxy_resolver_fixed.cc', |
| 82 'proxy/proxy_service.cc', | 82 'proxy/proxy_service.cc', |
| 83 'url_request/mime_sniffer_proxy.cc', | 83 'url_request/mime_sniffer_proxy.cc', |
| 84 'url_request/url_request.cc', | 84 'url_request/url_request.cc', |
| 85 'url_request/url_request_about_job.cc', | 85 'url_request/url_request_about_job.cc', |
| 86 'url_request/url_request_context.cc', |
| 86 'url_request/url_request_error_job.cc', | 87 'url_request/url_request_error_job.cc', |
| 87 'url_request/url_request_file_dir_job.cc', | 88 'url_request/url_request_file_dir_job.cc', |
| 88 'url_request/url_request_file_job.cc', | 89 'url_request/url_request_file_job.cc', |
| 89 'url_request/url_request_filter.cc', | 90 'url_request/url_request_filter.cc', |
| 90 'url_request/url_request_ftp_job.cc', | 91 'url_request/url_request_ftp_job.cc', |
| 91 'url_request/url_request_http_job.cc', | 92 'url_request/url_request_http_job.cc', |
| 92 'url_request/url_request_job.cc', | 93 'url_request/url_request_job.cc', |
| 93 'url_request/url_request_job_manager.cc', | 94 'url_request/url_request_job_manager.cc', |
| 94 'url_request/url_request_job_metrics.cc', | 95 'url_request/url_request_job_metrics.cc', |
| 95 'url_request/url_request_job_tracker.cc', | 96 'url_request/url_request_job_tracker.cc', |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 # possibly only on incredibuild, scons doesn't know this. | 160 # possibly only on incredibuild, scons doesn't know this. |
| 160 env_p = env.Clone() | 161 env_p = env.Clone() |
| 161 env_p.Append(CCFLAGS='/Ylnet') | 162 env_p.Append(CCFLAGS='/Ylnet') |
| 162 pch, obj = env_p.PCH('precompiled_net.pch', 'build/precompiled_net.cc') | 163 pch, obj = env_p.PCH('precompiled_net.pch', 'build/precompiled_net.cc') |
| 163 env['PCH'] = pch | 164 env['PCH'] = pch |
| 164 env['PCHSTOP'] = 'precompiled_net.h' | 165 env['PCHSTOP'] = 'precompiled_net.h' |
| 165 env.Append(CCPCHFLAGS = ['/FIprecompiled_net.h']) | 166 env.Append(CCPCHFLAGS = ['/FIprecompiled_net.h']) |
| 166 input_files += [obj] | 167 input_files += [obj] |
| 167 | 168 |
| 168 env.ChromeStaticLibrary('net', input_files) | 169 env.ChromeStaticLibrary('net', input_files) |
| OLD | NEW |