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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 'http/http_auth_handler_digest.cc', | 74 'http/http_auth_handler_digest.cc', |
75 'http/http_cache.cc', | 75 'http/http_cache.cc', |
76 'http/http_chunked_decoder.cc', | 76 'http/http_chunked_decoder.cc', |
77 'http/http_network_layer.cc', | 77 'http/http_network_layer.cc', |
78 'http/http_network_transaction.cc', | 78 'http/http_network_transaction.cc', |
79 'http/http_response_headers.cc', | 79 'http/http_response_headers.cc', |
80 'http/http_transaction_winhttp.cc', | 80 'http/http_transaction_winhttp.cc', |
81 'http/http_util.cc', | 81 'http/http_util.cc', |
82 'http/http_vary_data.cc', | 82 'http/http_vary_data.cc', |
83 'http/winhttp_request_throttle.cc', | 83 'http/winhttp_request_throttle.cc', |
84 'proxy/proxy_resolver_fixed.cc', | |
85 'proxy/proxy_script_fetcher.cc', | 84 'proxy/proxy_script_fetcher.cc', |
86 'proxy/proxy_service.cc', | 85 'proxy/proxy_service.cc', |
87 'url_request/mime_sniffer_proxy.cc', | 86 'url_request/mime_sniffer_proxy.cc', |
88 'url_request/url_request.cc', | 87 'url_request/url_request.cc', |
89 'url_request/url_request_about_job.cc', | 88 'url_request/url_request_about_job.cc', |
90 'url_request/url_request_error_job.cc', | 89 'url_request/url_request_error_job.cc', |
91 'url_request/url_request_file_dir_job.cc', | 90 'url_request/url_request_file_dir_job.cc', |
92 'url_request/url_request_file_job.cc', | 91 'url_request/url_request_file_job.cc', |
93 'url_request/url_request_filter.cc', | 92 'url_request/url_request_filter.cc', |
94 'url_request/url_request_ftp_job.cc', | 93 'url_request/url_request_ftp_job.cc', |
(...skipping 25 matching lines...) Expand all Loading... |
120 'base/net_util_win.cc', | 119 'base/net_util_win.cc', |
121 'base/platform_mime_util_win.cc', | 120 'base/platform_mime_util_win.cc', |
122 'base/ssl_client_socket_win.cc', | 121 'base/ssl_client_socket_win.cc', |
123 'base/tcp_client_socket_win.cc', | 122 'base/tcp_client_socket_win.cc', |
124 'base/wininet_util.cc', | 123 'base/wininet_util.cc', |
125 'base/winsock_init.cc', | 124 'base/winsock_init.cc', |
126 'base/x509_certificate_win.cc', | 125 'base/x509_certificate_win.cc', |
127 'disk_cache/cache_util_win.cc', | 126 'disk_cache/cache_util_win.cc', |
128 'disk_cache/file_win.cc', | 127 'disk_cache/file_win.cc', |
129 'disk_cache/mapped_file_win.cc', | 128 'disk_cache/mapped_file_win.cc', |
| 129 'proxy/proxy_config_service_win.cc', |
130 'proxy/proxy_resolver_winhttp.cc', | 130 'proxy/proxy_resolver_winhttp.cc', |
131 'url_request/url_request_inet_job.cc', | 131 'url_request/url_request_inet_job.cc', |
132 ]) | 132 ]) |
133 | 133 |
134 if env['PLATFORM'] == 'darwin': | 134 if env['PLATFORM'] == 'darwin': |
135 input_files.extend([ | 135 input_files.extend([ |
136 'base/platform_mime_util_mac.cc', | 136 'base/platform_mime_util_mac.cc', |
137 'base/ssl_client_socket_mac.cc', | 137 'base/ssl_client_socket_mac.cc', |
138 'base/x509_certificate_mac.cc', | 138 'base/x509_certificate_mac.cc', |
139 'proxy/proxy_resolver_mac.cc', | 139 'proxy/proxy_resolver_mac.cc', |
(...skipping 23 matching lines...) Expand all Loading... |
163 # possibly only on incredibuild, scons doesn't know this. | 163 # possibly only on incredibuild, scons doesn't know this. |
164 env_p = env.Clone() | 164 env_p = env.Clone() |
165 env_p.Append(CCFLAGS='/Ylnet') | 165 env_p.Append(CCFLAGS='/Ylnet') |
166 pch, obj = env_p.PCH('precompiled_net.pch', 'build/precompiled_net.cc') | 166 pch, obj = env_p.PCH('precompiled_net.pch', 'build/precompiled_net.cc') |
167 env['PCH'] = pch | 167 env['PCH'] = pch |
168 env['PCHSTOP'] = 'precompiled_net.h' | 168 env['PCHSTOP'] = 'precompiled_net.h' |
169 env.Append(CCPCHFLAGS = ['/FIprecompiled_net.h']) | 169 env.Append(CCPCHFLAGS = ['/FIprecompiled_net.h']) |
170 input_files += [obj] | 170 input_files += [obj] |
171 | 171 |
172 env.ChromeStaticLibrary('net', input_files) | 172 env.ChromeStaticLibrary('net', input_files) |
OLD | NEW |