| 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 base.sln. | 6 Configuration for building base.sln. |
| 7 """ | 7 """ |
| 8 | 8 |
| 9 Import('env') | 9 Import('env') |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 entries = [ | 33 entries = [ |
| 34 '$NET_DIR/build/dump_cache.vcproj', | 34 '$NET_DIR/build/dump_cache.vcproj', |
| 35 #'build/stress_cache.vcproj', | 35 #'build/stress_cache.vcproj', |
| 36 '$NET_DIR/build/crash_cache.vcproj', | 36 '$NET_DIR/build/crash_cache.vcproj', |
| 37 '$NET_DIR/build/tld_cleanup.vcproj', | 37 '$NET_DIR/build/tld_cleanup.vcproj', |
| 38 ], | 38 ], |
| 39 guid='{E7D78B1F-F7D3-47CB-BF51-3957C646B406}') | 39 guid='{E7D78B1F-F7D3-47CB-BF51-3957C646B406}') |
| 40 | 40 |
| 41 | 41 |
| 42 solution = env.ChromeMSVSSolution('net.sln', | 42 solution = env.ChromeMSVSSolution('net.sln', |
| 43 dest='$CHROME_SRC_DIR/net/net.sln', |
| 43 entries = [ | 44 entries = [ |
| 44 'net dependencies', | 45 'net dependencies', |
| 45 '$GOOGLEURL_DIR/build/googleurl.vcproj', | 46 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
| 46 '$BASE_DIR/build/base.vcproj', | 47 '$BASE_DIR/build/base.vcproj', |
| 47 '$BASE_DIR/build/debug_message.vcproj', | 48 '$BASE_DIR/build/debug_message.vcproj', |
| 48 '$ICU38_DIR/build/icu.vcproj', | 49 '$ICU38_DIR/build/icu.vcproj', |
| 49 '$ICU38_DIR/build/icudt.vcproj', | 50 '$ICU38_DIR/build/icudt.vcproj', |
| 50 '$NET_DIR/build/net.vcproj', | 51 '$NET_DIR/build/net.vcproj', |
| 51 '$NET_DIR/build/net_unittests.vcproj', | 52 '$NET_DIR/build/net_unittests.vcproj', |
| 52 '$NET_DIR/build/tld_cleanup.vcproj', | 53 '$NET_DIR/build/tld_cleanup.vcproj', |
| 53 'net tools', | 54 'net tools', |
| 54 '$ZLIB_DIR/zlib.vcproj', | 55 '$ZLIB_DIR/zlib.vcproj', |
| 55 '$BZIP2_DIR/bzip2.vcproj', | 56 '$BZIP2_DIR/bzip2.vcproj', |
| 56 '$MODP_B64_DIR/modp_b64.vcproj', | 57 '$MODP_B64_DIR/modp_b64.vcproj', |
| 57 '$NET_DIR/build/net_perftests.vcproj', | 58 '$NET_DIR/build/net_perftests.vcproj', |
| 58 '$NET_DIR/build/crash_cache.vcproj', | 59 '$NET_DIR/build/crash_cache.vcproj', |
| 59 '$NET_DIR/build/stress_cache.vcproj', | 60 '$NET_DIR/build/stress_cache.vcproj', |
| 60 '$TESTING_DIR/gtest.vcproj', | 61 '$TESTING_DIR/gtest.vcproj', |
| 61 '$SDCH_DIR/sdch.vcproj', | 62 '$SDCH_DIR/sdch.vcproj', |
| 62 '$NET_DIR/build/dump_cache.vcproj', | 63 '$NET_DIR/build/dump_cache.vcproj', |
| 64 '$NET_DIR/build/net_resources.vcproj', |
| 63 | 65 |
| 64 ], | 66 ], |
| 65 variants = [ | 67 variants = [ |
| 66 'Debug|Win32', | 68 'Debug|Win32', |
| 67 'Release|Win32', | 69 'Release|Win32', |
| 68 ]) | 70 ]) |
| 69 | |
| 70 env.AlwaysBuild(solution) | |
| 71 | |
| 72 i = env.Command('$CHROME_SRC_DIR/net/net.sln', solution, | |
| 73 Copy('$TARGET', '$SOURCE')) | |
| 74 Alias('msvs', i) | |
| OLD | NEW |