OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 __doc__ = """ | |
6 Configuration for building base.sln. | |
7 """ | |
8 | |
9 Import('env') | |
10 | |
11 env = env.Clone() | |
12 | |
13 env.Tool('MSVSNew') | |
14 | |
15 env.ChromeMSVSFolder('net dependencies', | |
16 name='dependencies', | |
17 entries = [ | |
18 '$BASE_DIR/build/debug_message.vcproj', | |
19 '$BASE_DIR/build/base.vcproj', | |
20 '$BZIP2_DIR/bzip2.vcproj', | |
21 '$MODP_B64_DIR/modp_b64.vcproj', | |
22 '$ZLIB_DIR/zlib.vcproj', | |
23 '$ICU38_DIR/build/icu.vcproj', | |
24 '$ICU38_DIR/build/icudt.vcproj', | |
25 '$TESTING_DIR/gtest.vcproj', | |
26 '$GOOGLEURL_DIR/build/googleurl.vcproj', | |
27 '$SDCH_DIR/sdch.vcproj', | |
28 ], | |
29 guid='{A04F65DF-D422-4E8F-B918-29EBA839363E}') | |
30 | |
31 env.ChromeMSVSFolder('net tools', | |
32 name='tools', | |
33 entries = [ | |
34 '$NET_DIR/build/dump_cache.vcproj', | |
35 #'build/stress_cache.vcproj', | |
36 '$NET_DIR/build/crash_cache.vcproj', | |
37 '$NET_DIR/build/tld_cleanup.vcproj', | |
38 ], | |
39 guid='{E7D78B1F-F7D3-47CB-BF51-3957C646B406}') | |
40 | |
41 | |
42 solution = env.ChromeMSVSSolution('net.sln', | |
43 dest='$CHROME_SRC_DIR/net/net.sln', | |
44 entries = [ | |
45 'net dependencies', | |
46 '$GOOGLEURL_DIR/build/googleurl.vcproj', | |
47 '$BASE_DIR/build/base.vcproj', | |
48 '$BASE_DIR/build/debug_message.vcproj', | |
49 '$ICU38_DIR/build/icu.vcproj', | |
50 '$ICU38_DIR/build/icudt.vcproj', | |
51 '$NET_DIR/build/net.vcproj', | |
52 '$NET_DIR/build/net_unittests.vcproj', | |
53 '$NET_DIR/build/tld_cleanup.vcproj', | |
54 'net tools', | |
55 '$ZLIB_DIR/zlib.vcproj', | |
56 '$BZIP2_DIR/bzip2.vcproj', | |
57 '$MODP_B64_DIR/modp_b64.vcproj', | |
58 '$NET_DIR/build/net_perftests.vcproj', | |
59 '$NET_DIR/build/crash_cache.vcproj', | |
60 '$NET_DIR/build/stress_cache.vcproj', | |
61 '$TESTING_DIR/gtest.vcproj', | |
62 '$SDCH_DIR/sdch.vcproj', | |
63 '$NET_DIR/build/dump_cache.vcproj', | |
64 '$NET_DIR/build/net_resources.vcproj', | |
65 | |
66 ], | |
67 variants = [ | |
68 'Debug|Win32', | |
69 'Release|Win32', | |
70 ]) | |
OLD | NEW |