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

Side by Side Diff: net/net_lib.scons

Issue 14183: Disk cache: move eviction code to a separate file.... (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/net.xcodeproj/project.pbxproj ('k') | no next file » | 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 'base/sdch_filter.cc', 47 'base/sdch_filter.cc',
48 'base/sdch_manager.cc', 48 'base/sdch_manager.cc',
49 'base/ssl_config_service.cc', 49 'base/ssl_config_service.cc',
50 'base/telnet_server.cc', 50 'base/telnet_server.cc',
51 'base/upload_data.cc', 51 'base/upload_data.cc',
52 'base/upload_data_stream.cc', 52 'base/upload_data_stream.cc',
53 'base/x509_certificate.cc', 53 'base/x509_certificate.cc',
54 'disk_cache/backend_impl.cc', 54 'disk_cache/backend_impl.cc',
55 'disk_cache/block_files.cc', 55 'disk_cache/block_files.cc',
56 'disk_cache/entry_impl.cc', 56 'disk_cache/entry_impl.cc',
57 'disk_cache/eviction.cc',
57 'disk_cache/file_lock.cc', 58 'disk_cache/file_lock.cc',
58 'disk_cache/hash.cc', 59 'disk_cache/hash.cc',
59 'disk_cache/mem_backend_impl.cc', 60 'disk_cache/mem_backend_impl.cc',
60 'disk_cache/mem_entry_impl.cc', 61 'disk_cache/mem_entry_impl.cc',
61 'disk_cache/mem_rankings.cc', 62 'disk_cache/mem_rankings.cc',
62 'disk_cache/rankings.cc', 63 'disk_cache/rankings.cc',
63 'disk_cache/stats.cc', 64 'disk_cache/stats.cc',
64 'disk_cache/stats_histogram.cc', 65 'disk_cache/stats_histogram.cc',
65 'disk_cache/trace.cc', 66 'disk_cache/trace.cc',
66 'http/cert_status_cache.cc', 67 'http/cert_status_cache.cc',
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 # possibly only on incredibuild, scons doesn't know this. 161 # possibly only on incredibuild, scons doesn't know this.
161 env_p = env.Clone() 162 env_p = env.Clone()
162 env_p.Append(CCFLAGS='/Ylnet') 163 env_p.Append(CCFLAGS='/Ylnet')
163 pch, obj = env_p.PCH('precompiled_net.pch', 'build/precompiled_net.cc') 164 pch, obj = env_p.PCH('precompiled_net.pch', 'build/precompiled_net.cc')
164 env['PCH'] = pch 165 env['PCH'] = pch
165 env['PCHSTOP'] = 'precompiled_net.h' 166 env['PCHSTOP'] = 'precompiled_net.h'
166 env.Append(CCPCHFLAGS = ['/FIprecompiled_net.h']) 167 env.Append(CCPCHFLAGS = ['/FIprecompiled_net.h'])
167 input_files += [obj] 168 input_files += [obj]
168 169
169 env.ChromeStaticLibrary('net', input_files) 170 env.ChromeStaticLibrary('net', input_files)
OLDNEW
« no previous file with comments | « net/net.xcodeproj/project.pbxproj ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698