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

Side by Side Diff: net/net_sln.scons

Issue 14472: Initial generation of native Visual Studio solution files... (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_resources.scons ('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')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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 entries = [
44 'net dependencies',
45 '$GOOGLEURL_DIR/build/googleurl.vcproj',
46 '$BASE_DIR/build/base.vcproj',
47 '$BASE_DIR/build/debug_message.vcproj',
48 '$ICU38_DIR/build/icu.vcproj',
49 '$ICU38_DIR/build/icudt.vcproj',
50 '$NET_DIR/build/net.vcproj',
51 '$NET_DIR/build/net_unittests.vcproj',
52 '$NET_DIR/build/tld_cleanup.vcproj',
53 'net tools',
54 '$ZLIB_DIR/zlib.vcproj',
55 '$BZIP2_DIR/bzip2.vcproj',
56 '$MODP_B64_DIR/modp_b64.vcproj',
57 '$NET_DIR/build/net_perftests.vcproj',
58 '$NET_DIR/build/crash_cache.vcproj',
59 '$NET_DIR/build/stress_cache.vcproj',
60 '$TESTING_DIR/gtest.vcproj',
61 '$SDCH_DIR/sdch.vcproj',
62 '$NET_DIR/build/dump_cache.vcproj',
63
64 ],
65 variants = [
66 'Debug|Win32',
67 'Release|Win32',
68 ])
69
70 env.AlwaysBuild(solution)
71
72 i = env.Command('$CHROME_SRC_DIR/net/net.sln', solution,
73 Copy('$TARGET', '$SOURCE'))
74 Alias('solutions', i)
OLDNEW
« no previous file with comments | « net/net_resources.scons ('k') | net/net_unittests.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698