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

Side by Side Diff: rlz/SConscript

Issue 18717: Generate additional .vcproj files in miscellaneous top-level components.... (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
« no previous file with comments | « media/media_unittests.scons ('k') | rlz/rlz.vcproj » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 Import('env') 5 Import('env')
6 6
7 input_files = ChromeFileList([
8 'binaries/rlz.dll',
9 'binaries/rlz_dll.pdb',
10 ])
11
12 # TODO(sgk): derive from above ChromeFileList object.
7 env.Install('$TARGET_ROOT', 13 env.Install('$TARGET_ROOT',
8 ['binaries/rlz.dll', 14 ['binaries/rlz.dll',
9 'binaries/rlz_dll.pdb']) 15 'binaries/rlz_dll.pdb'])
10 16
11 env.ChromeMSVSProject('$RLZ_DIR/rlz.vcproj', 17 p = env.ChromeMSVSProject('rlz.vcproj',
12 guid='{BF4F447B-72B5-4059-BE1B-F94337B1F385}') 18 dest='$CHROME_SRC_DIR/rlz/rlz.vcproj',
19 guid='{BF4F447B-72B5-4059-BE1B-F94337B1F385}',
20 keyword='Win32Proj',
21 # TODO(sgk): when we can intuit the hierarchy
22 # from the built targets.
23 #buildtargets=TODO,
24 files=input_files,
25 tools=[
26 'VCPreBuildEventTool',
27 'Output RLZ copy',
28 'VCCustomBuildTool',
29 'VCMIDLTool',
30 'VCPostBuildEventTool',
31 ],
32 ConfigurationType='10')
33
34 # TODO(sgk): remove once SCons drives build
35 p.AddToolFile('./output_rlz_copy.rules')
36
37 p.AddConfig('Debug|Win32',
38 InheritedPropertySheets=[
39 '$(SolutionDir)../build/debug.vsprops',
40 ])
41
42 p.AddConfig('Release|Win32',
43 InheritedPropertySheets=[
44 '$(SolutionDir)../build/release.vsprops',
45 ])
OLDNEW
« no previous file with comments | « media/media_unittests.scons ('k') | rlz/rlz.vcproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698