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

Side by Side Diff: net/stress_cache.scons

Issue 17602: Updates to Visual Studio project generation to accomodate... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 11 months 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
OLDNEW
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
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
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)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698