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 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) |
OLD | NEW |