1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
Import('env')
env = env.Clone()
env.Prepend(
CPPPATH = [
'$GTEST_DIR',
'$GTEST_DIR/include',
],
)
if env.Bit('windows'):
env.Append(
CCFLAGS = [
'/TP',
'/WX',
'/Wp64',
],
)
input_files = ChromeFileList([
'gtest/include/gtest/internal/gtest-death-test-internal.h',
'gtest/src/gtest-death-test.cc',
'gtest/include/gtest/gtest-death-test.h',
'gtest/src/gtest-filepath.cc',
'gtest/include/gtest/internal/gtest-filepath.h',
'gtest/src/gtest-internal-inl.h',
'gtest/include/gtest/internal/gtest-internal.h',
'gtest/include/gtest/gtest-message.h',
'gtest/src/gtest-port.cc',
'gtest/include/gtest/internal/gtest-port.h',
'gtest/include/gtest/gtest-spi.h',
'gtest/include/gtest/internal/gtest-string.h',
'gtest/src/gtest.cc',
'gtest/include/gtest/gtest.h',
'gtest/include/gtest/gtest_pred_impl.h',
'gtest/include/gtest/gtest_prod.h',
'multiprocess_func_list.cc',
])
env.ChromeStaticLibrary('gtest', input_files)
p = env.ChromeMSVSProject('gtest.vcproj',
guid='{BFE8E2A7-3B3B-43B0-A994-3058B852DB8B}',
files=input_files,
tools = [
'VCPreBuildEventTool',
'VCCustomBuildTool',
'VCXMLDataGeneratorTool',
'VCWebServiceProxyGeneratorTool',
'VCMIDLTool',
'VCCLCompilerTool',
'VCManagedResourceCompilerTool',
'VCResourceCompilerTool',
'VCPreLinkEventTool',
'VCLibrarianTool',
'VCALinkTool',
'VCXDCMakeTool',
'VCBscMakeTool',
'VCFxCopTool',
'VCPostBuildEventTool',
])
p.AddConfig('Debug|Win32',
ConfigurationType = '4',
InheritedPropertySheets = [
'$(SolutionDir)../build/debug.vsprops',
'./using_gtest.vsprops',
])
p.AddConfig('Release|Win32',
ConfigurationType = '4',
InheritedPropertySheets = [
'$(SolutionDir)../build/release.vsprops',
'./using_gtest.vsprops',
])
env.AlwaysBuild(p)
i = env.Command('$CHROME_SRC_DIR/testing/gtest.vcproj', p,
Copy('$TARGET', '$SOURCE'))
Alias('msvs', i)
|