Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Side by Side Diff: net/net_lib.scons

Issue 13251: Add a ProxyScriptFetcher class for doing asynch downloads of PAC scripts.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/http/http_network_transaction.cc ('k') | net/net_unittests.scons » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_network_layer.cc', 74 'http/http_network_layer.cc',
75 'http/http_network_transaction.cc', 75 'http/http_network_transaction.cc',
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_script_fetcher.cc',
82 'proxy/proxy_service.cc', 83 'proxy/proxy_service.cc',
83 'url_request/mime_sniffer_proxy.cc', 84 'url_request/mime_sniffer_proxy.cc',
84 'url_request/url_request.cc', 85 'url_request/url_request.cc',
85 'url_request/url_request_about_job.cc', 86 'url_request/url_request_about_job.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',
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
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)
OLDNEW
« no previous file with comments | « net/http/http_network_transaction.cc ('k') | net/net_unittests.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698