OLD | NEW |
1 | 1 |
2 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 __doc__ = """ | 6 __doc__ = """ |
7 Configuration for building base_unittests{,.exe}. | 7 Configuration for building base_unittests{,.exe}. |
8 """ | 8 """ |
9 | 9 |
10 Import('env') | 10 Import('env') |
(...skipping 10 matching lines...) Expand all Loading... |
21 input_files = ChromeFileList([ | 21 input_files = ChromeFileList([ |
22 'debug_message.cc', | 22 'debug_message.cc', |
23 ]) | 23 ]) |
24 | 24 |
25 if env.Bit('windows'): | 25 if env.Bit('windows'): |
26 # TODO(port): port this if it's needed on non-Windows systems, | 26 # TODO(port): port this if it's needed on non-Windows systems, |
27 # or remove this comment (and merge with the above block?) | 27 # or remove this comment (and merge with the above block?) |
28 # if it's really Windows-specific. | 28 # if it's really Windows-specific. |
29 env.ChromeProgram('debug_message', input_files) | 29 env.ChromeProgram('debug_message', input_files) |
30 | 30 |
31 env.ChromeMSVSProject('$BASE_DIR/build/debug_message.vcproj', | |
32 guid='{0E5474AC-5996-4B13-87C0-4AE931EE0815}') | |
33 | |
34 p = env.ChromeMSVSProject('build/debug_message.vcproj', | 31 p = env.ChromeMSVSProject('build/debug_message.vcproj', |
35 dest='$CHROME_SRC_DIR/base/build/debug_message.vcproj'
, | 32 dest=('$CHROME_SRC_DIR/base/' |
| 33 + 'build/debug_message.vcproj'), |
36 guid='{0E5474AC-5996-4B13-87C0-4AE931EE0815}', | 34 guid='{0E5474AC-5996-4B13-87C0-4AE931EE0815}', |
| 35 keyword='Win32Proj', |
37 files=input_files, | 36 files=input_files, |
38 root_namespace='DebugMessage', | 37 root_namespace='DebugMessage', |
39 tools = [ | 38 tools = [ |
40 'VCPreBuildEventTool', | 39 'VCPreBuildEventTool', |
41 'VCCustomBuildTool', | 40 'VCCustomBuildTool', |
42 'VCXMLDataGeneratorTool', | 41 'VCXMLDataGeneratorTool', |
43 'VCWebServiceProxyGeneratorTool', | 42 'VCWebServiceProxyGeneratorTool', |
44 'VCMIDLTool', | 43 'VCMIDLTool', |
45 'VCCLCompilerTool', | 44 'VCCLCompilerTool', |
46 'VCManagedResourceCompilerTool', | 45 'VCManagedResourceCompilerTool', |
(...skipping 16 matching lines...) Expand all Loading... |
63 '$(SolutionDir)../build/common.vsprops', | 62 '$(SolutionDir)../build/common.vsprops', |
64 '$(SolutionDir)../build/debug.vsprops', | 63 '$(SolutionDir)../build/debug.vsprops', |
65 ]) | 64 ]) |
66 | 65 |
67 p.AddConfig('Release|Win32', | 66 p.AddConfig('Release|Win32', |
68 ConfigurationType = '1', | 67 ConfigurationType = '1', |
69 InheritedPropertySheets = [ | 68 InheritedPropertySheets = [ |
70 '$(SolutionDir)../build/common.vsprops', | 69 '$(SolutionDir)../build/common.vsprops', |
71 '$(SolutionDir)../build/release.vsprops', | 70 '$(SolutionDir)../build/release.vsprops', |
72 ]) | 71 ]) |
OLD | NEW |