| 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 the stress_cache{,.exe} executable. | 6 Configuration for building the stress_cache{,.exe} executable. |
| 7 """ | 7 """ |
| 8 | 8 |
| 9 Import('env') | 9 Import('env') |
| 10 | 10 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 input_files = ChromeFileList([ | 39 input_files = ChromeFileList([ |
| 40 'disk_cache/disk_cache_test_util$OBJSUFFIX', | 40 'disk_cache/disk_cache_test_util$OBJSUFFIX', |
| 41 'disk_cache/stress_cache.cc', | 41 'disk_cache/stress_cache.cc', |
| 42 ]) | 42 ]) |
| 43 | 43 |
| 44 if not env.Bit('mac'): | 44 if not env.Bit('mac'): |
| 45 env.ChromeTestProgram('stress_cache', input_files) | 45 env.ChromeTestProgram('stress_cache', input_files) |
| 46 | 46 |
| 47 p = env.ChromeMSVSProject('$NET_DIR/build/stress_cache.vcproj', | 47 p = env.ChromeMSVSProject('$NET_DIR/build/stress_cache.vcproj', |
| 48 dest='$CHROME_SRC_DIR/net/build/stress_cache.vcproj', |
| 48 guid='{B491C3A1-DE5F-4843-A1BB-AB8C4337187B}', | 49 guid='{B491C3A1-DE5F-4843-A1BB-AB8C4337187B}', |
| 49 dependencies = [ | 50 dependencies = [ |
| 50 '$BASE_DIR/build/base.vcproj', | 51 '$BASE_DIR/build/base.vcproj', |
| 51 '$NET_DIR/build/net.vcproj', | 52 '$NET_DIR/build/net.vcproj', |
| 52 '$ICU38_DIR/build/icu.vcproj', | 53 '$ICU38_DIR/build/icu.vcproj', |
| 53 '$TESTING_DIR/gtest.vcproj', | 54 '$TESTING_DIR/gtest.vcproj', |
| 54 ], | 55 ], |
| 55 # TODO: restore when we can derive all info, | 56 # TODO: restore when we can derive all info, |
| 56 # on all platforms, from the windows build targets. | 57 # on all platforms, from the windows build targets. |
| 57 #buildtargets=TODO, | 58 #buildtargets=TODO, |
| (...skipping 26 matching lines...) Expand all Loading... |
| 84 InheritedPropertySheets=[ | 85 InheritedPropertySheets=[ |
| 85 '$(SolutionDir)../build/common.vsprops', | 86 '$(SolutionDir)../build/common.vsprops', |
| 86 '$(SolutionDir)../build/debug.vsprops', | 87 '$(SolutionDir)../build/debug.vsprops', |
| 87 ]) | 88 ]) |
| 88 | 89 |
| 89 p.AddConfig('Release|Win32', | 90 p.AddConfig('Release|Win32', |
| 90 InheritedPropertySheets=[ | 91 InheritedPropertySheets=[ |
| 91 '$(SolutionDir)../build/common.vsprops', | 92 '$(SolutionDir)../build/common.vsprops', |
| 92 '$(SolutionDir)../build/release.vsprops', | 93 '$(SolutionDir)../build/release.vsprops', |
| 93 ]) | 94 ]) |
| 94 | |
| 95 env.AlwaysBuild(p) | |
| 96 | |
| 97 i = env.Command('$CHROME_SRC_DIR/net/build/stress_cache.vcproj', p, | |
| 98 Copy('$TARGET', '$SOURCE')) | |
| 99 Alias('msvs', i) | |
| OLD | NEW |