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 |
11 env = env.Clone() | 11 env = env.Clone() |
12 | 12 |
13 env.ApplySConscript([ | 13 env.ApplySConscript([ |
14 '$ICU38_DIR/using_icu38.scons', | 14 '$ICU38_DIR/using_icu38.scons', |
15 '$SDCH_DIR/using_sdch.scons', | 15 '$SDCH_DIR/using_sdch.scons', |
16 '$ZLIB_DIR/using_zlib.scons', | 16 '$ZLIB_DIR/using_zlib.scons', |
17 ]) | 17 ]) |
18 | 18 |
19 # These net files work on *all* platforms; files that don't work | 19 # These net files work on *all* platforms; files that don't work |
20 # cross-platform live below. | 20 # cross-platform live below. |
21 input_files = [ | 21 input_files = [ |
22 'base/address_list.cc', | 22 'base/address_list.cc', |
23 'base/auth_cache.cc', | 23 'base/auth_cache.cc', |
24 'base/base64.cc', | 24 'base/base64.cc', |
25 'base/bzip2_filter.cc', | 25 'base/bzip2_filter.cc', |
26 'base/client_socket_factory.cc', | 26 'base/client_socket_factory.cc', |
27 'base/client_socket_handle.cc', | 27 'base/client_socket_handle.cc', |
28 'base/client_socket_pool.cc', | 28 'base/client_socket_pool.cc', |
| 29 'base/connection_type_histograms.cc', |
29 'base/cookie_monster.cc', | 30 'base/cookie_monster.cc', |
30 'base/cookie_policy.cc', | 31 'base/cookie_policy.cc', |
31 'base/data_url.cc', | 32 'base/data_url.cc', |
32 'base/directory_lister.cc', | 33 'base/directory_lister.cc', |
33 'base/dns_resolution_observer.cc', | 34 'base/dns_resolution_observer.cc', |
34 'base/escape.cc', | 35 'base/escape.cc', |
35 'base/ev_root_ca_metadata.cc', | 36 'base/ev_root_ca_metadata.cc', |
36 'base/filter.cc', | 37 'base/filter.cc', |
37 'base/gzip_filter.cc', | 38 'base/gzip_filter.cc', |
38 'base/gzip_header.cc', | 39 'base/gzip_header.cc', |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 env.Append(CCPCHFLAGS = ['/FIprecompiled_net.h']) | 170 env.Append(CCPCHFLAGS = ['/FIprecompiled_net.h']) |
170 input_files += [obj] | 171 input_files += [obj] |
171 | 172 |
172 env.ChromeLibrary('net', input_files) | 173 env.ChromeLibrary('net', input_files) |
173 | 174 |
174 env.ChromeMSVSProject('$NET_DIR/build/net.vcproj', | 175 env.ChromeMSVSProject('$NET_DIR/build/net.vcproj', |
175 dependencies = [ | 176 dependencies = [ |
176 '$NET_DIR/build/tld_cleanup.vcproj' | 177 '$NET_DIR/build/tld_cleanup.vcproj' |
177 ], | 178 ], |
178 guid='{326E9795-E760-410A-B69A-3F79DB3F5243}') | 179 guid='{326E9795-E760-410A-B69A-3F79DB3F5243}') |
OLD | NEW |