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 Import('env') | 5 Import('env') |
6 | 6 |
7 env = env.Clone() | 7 env = env.Clone() |
8 | 8 |
9 env.Prepend( | 9 env.Prepend( |
10 CPPPATH = [ | 10 CPPPATH = [ |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 'gtest/include/gtest/internal/gtest-filepath.h', | 50 'gtest/include/gtest/internal/gtest-filepath.h', |
51 'gtest/include/gtest/internal/gtest-internal.h', | 51 'gtest/include/gtest/internal/gtest-internal.h', |
52 'gtest/include/gtest/internal/gtest-linked_ptr.h', | 52 'gtest/include/gtest/internal/gtest-linked_ptr.h', |
53 'gtest/include/gtest/internal/gtest-param-util-generated.h', | 53 'gtest/include/gtest/internal/gtest-param-util-generated.h', |
54 'gtest/include/gtest/internal/gtest-param-util.h', | 54 'gtest/include/gtest/internal/gtest-param-util.h', |
55 'gtest/include/gtest/internal/gtest-port.h', | 55 'gtest/include/gtest/internal/gtest-port.h', |
56 'gtest/include/gtest/internal/gtest-string.h', | 56 'gtest/include/gtest/internal/gtest-string.h', |
57 'gtest/include/gtest/internal/gtest-type-util.h', | 57 'gtest/include/gtest/internal/gtest-type-util.h', |
58 ]), | 58 ]), |
59 ]), | 59 ]), |
60 'multiprocess_func_list.cc', | 60 'multiprocess_func_list.cc', |
61 'multiprocess_func_list.h', | 61 'multiprocess_func_list.h', |
62 'platform_test.h', | 62 'platform_test.h', |
63 ]) | 63 ]) |
64 | 64 |
65 env.ChromeLibrary('gtest', input_files) | 65 env.ChromeLibrary('gtest', input_files) |
66 | 66 |
67 p = env.ChromeMSVSProject('gtest.vcproj', | 67 p = env.ChromeMSVSProject('gtest.vcproj', |
68 dest='$CHROME_SRC_DIR/testing/gtest.vcproj', | 68 dest='$CHROME_SRC_DIR/testing/gtest.vcproj', |
69 guid='{BFE8E2A7-3B3B-43B0-A994-3058B852DB8B}', | 69 guid='{BFE8E2A7-3B3B-43B0-A994-3058B852DB8B}', |
| 70 keyword='Win32Proj', |
70 files=input_files, | 71 files=input_files, |
71 relative_path_prefix=r'./', | 72 relative_path_prefix=r'./', |
72 tools = [ | 73 tools = [ |
73 'VCPreBuildEventTool', | 74 'VCPreBuildEventTool', |
74 'VCCustomBuildTool', | 75 'VCCustomBuildTool', |
75 'VCXMLDataGeneratorTool', | 76 'VCXMLDataGeneratorTool', |
76 'VCWebServiceProxyGeneratorTool', | 77 'VCWebServiceProxyGeneratorTool', |
77 'VCMIDLTool', | 78 'VCMIDLTool', |
78 'VCCLCompilerTool', | 79 'VCCLCompilerTool', |
79 'VCManagedResourceCompilerTool', | 80 'VCManagedResourceCompilerTool', |
(...skipping 12 matching lines...) Expand all Loading... |
92 InheritedPropertySheets = [ | 93 InheritedPropertySheets = [ |
93 '$(SolutionDir)../build/debug.vsprops', | 94 '$(SolutionDir)../build/debug.vsprops', |
94 './using_gtest.vsprops', | 95 './using_gtest.vsprops', |
95 ]) | 96 ]) |
96 | 97 |
97 p.AddConfig('Release|Win32', | 98 p.AddConfig('Release|Win32', |
98 InheritedPropertySheets = [ | 99 InheritedPropertySheets = [ |
99 '$(SolutionDir)../build/release.vsprops', | 100 '$(SolutionDir)../build/release.vsprops', |
100 './using_gtest.vsprops', | 101 './using_gtest.vsprops', |
101 ]) | 102 ]) |
OLD | NEW |