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 29 matching lines...) Expand all Loading... |
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 dest='$CHROME_SRC_DIR/net/build/stress_cache.vcproj', |
49 guid='{B491C3A1-DE5F-4843-A1BB-AB8C4337187B}', | 49 guid='{B491C3A1-DE5F-4843-A1BB-AB8C4337187B}', |
| 50 keyword='Win32Proj', |
50 dependencies = [ | 51 dependencies = [ |
51 '$BASE_DIR/build/base.vcproj', | 52 '$BASE_DIR/build/base.vcproj', |
52 '$NET_DIR/build/net.vcproj', | 53 '$NET_DIR/build/net.vcproj', |
53 '$ICU38_DIR/build/icu.vcproj', | 54 '$ICU38_DIR/build/icu.vcproj', |
54 '$TESTING_DIR/gtest.vcproj', | 55 '$TESTING_DIR/gtest.vcproj', |
55 ], | 56 ], |
56 # TODO: restore when we can derive all info, | 57 # TODO: restore when we can derive all info, |
57 # on all platforms, from the windows build targets. | 58 # on all platforms, from the windows build targets. |
58 #buildtargets=TODO, | 59 #buildtargets=TODO, |
59 files=input_files, | 60 files=input_files, |
(...skipping 25 matching lines...) Expand all Loading... |
85 InheritedPropertySheets=[ | 86 InheritedPropertySheets=[ |
86 '$(SolutionDir)../build/common.vsprops', | 87 '$(SolutionDir)../build/common.vsprops', |
87 '$(SolutionDir)../build/debug.vsprops', | 88 '$(SolutionDir)../build/debug.vsprops', |
88 ]) | 89 ]) |
89 | 90 |
90 p.AddConfig('Release|Win32', | 91 p.AddConfig('Release|Win32', |
91 InheritedPropertySheets=[ | 92 InheritedPropertySheets=[ |
92 '$(SolutionDir)../build/common.vsprops', | 93 '$(SolutionDir)../build/common.vsprops', |
93 '$(SolutionDir)../build/release.vsprops', | 94 '$(SolutionDir)../build/release.vsprops', |
94 ]) | 95 ]) |
OLD | NEW |