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

Side by Side Diff: third_party/gtest/gtest.gyp

Issue 426403002: Initial commit of Crashpad (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Review fixes Created 6 years, 4 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
« no previous file with comments | « third_party/gtest/README.crashpad ('k') | third_party/gyp/README.crashpad » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2014 The Crashpad Authors. All rights reserved.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 {
16 'targets': [
17 {
18 'target_name': 'gtest',
19 'type': 'static_library',
20 'include_dirs': [
21 'gtest',
22 'gtest/include',
23 ],
24 'sources': [
25 'gtest/include/gtest/gtest-death-test.h',
26 'gtest/include/gtest/gtest-message.h',
27 'gtest/include/gtest/gtest-param-test.h',
28 'gtest/include/gtest/gtest-printers.h',
29 'gtest/include/gtest/gtest-spi.h',
30 'gtest/include/gtest/gtest-test-part.h',
31 'gtest/include/gtest/gtest-typed-test.h',
32 'gtest/include/gtest/gtest.h',
33 'gtest/include/gtest/gtest_pred_impl.h',
34 'gtest/include/gtest/gtest_prod.h',
35 'gtest/include/gtest/internal/gtest-death-test-internal.h',
36 'gtest/include/gtest/internal/gtest-filepath.h',
37 'gtest/include/gtest/internal/gtest-internal.h',
38 'gtest/include/gtest/internal/gtest-linked_ptr.h',
39 'gtest/include/gtest/internal/gtest-param-util-generated.h',
40 'gtest/include/gtest/internal/gtest-param-util.h',
41 'gtest/include/gtest/internal/gtest-port.h',
42 'gtest/include/gtest/internal/gtest-string.h',
43 'gtest/include/gtest/internal/gtest-tuple.h',
44 'gtest/include/gtest/internal/gtest-type-util.h',
45 'gtest/src/gtest.cc',
46 'gtest/src/gtest-death-test.cc',
47 'gtest/src/gtest-filepath.cc',
48 'gtest/src/gtest-port.cc',
49 'gtest/src/gtest-printers.cc',
50 'gtest/src/gtest-test-part.cc',
51 'gtest/src/gtest-typed-test.cc',
52 ],
53 'sources!': [
54 'gtest/src/gtest-all.cc',
55 ],
56 'direct_dependent_settings': {
57 'include_dirs': [
58 'gtest/include',
59 ],
60 },
61 },
62 {
63 'target_name': 'gtest_main',
64 'type': 'static_library',
65 'dependencies': [
66 'gtest',
67 ],
68 'sources': [
69 'gtest/src/gtest_main.cc',
70 ],
71 },
72 {
73 'target_name': 'gtest_test_executable',
74 'type': 'none',
75 'dependencies': [
76 'gtest',
77 ],
78 'direct_dependent_settings': {
79 'type': 'executable',
80 'include_dirs': [
81 'gtest',
82 ],
83 },
84 'export_dependent_settings': [
85 'gtest',
86 ],
87 },
88 {
89 'target_name': 'gtest_all_test',
90 'dependencies': [
91 'gtest_test_executable',
92 'gtest_main',
93 ],
94 'sources': [
95 'gtest/test/gtest-death-test_test.cc',
96 'gtest/test/gtest-filepath_test.cc',
97 'gtest/test/gtest-linked_ptr_test.cc',
98 'gtest/test/gtest-message_test.cc',
99 'gtest/test/gtest-options_test.cc',
100 'gtest/test/gtest-port_test.cc',
101 'gtest/test/gtest-printers_test.cc',
102 'gtest/test/gtest-test-part_test.cc',
103 'gtest/test/gtest-typed-test_test.cc',
104 'gtest/test/gtest-typed-test_test.h',
105 'gtest/test/gtest-typed-test2_test.cc',
106 'gtest/test/gtest_main_unittest.cc',
107 'gtest/test/gtest_pred_impl_unittest.cc',
108 'gtest/test/gtest_prod_test.cc',
109 'gtest/test/gtest_unittest.cc',
110 'gtest/test/production.cc',
111 'gtest/test/production.h',
112 ],
113 },
114 {
115 'target_name': 'gtest_environment_test',
116 'dependencies': [
117 'gtest_test_executable',
118 ],
119 'sources': [
120 'gtest/test/gtest_environment_test.cc',
121 ],
122 },
123 {
124 'target_name': 'gtest_listener_test',
125 'dependencies': [
126 'gtest_test_executable',
127 ],
128 'sources': [
129 'gtest/test/gtest-listener_test.cc',
130 ],
131 },
132 {
133 'target_name': 'gtest_no_test',
134 'dependencies': [
135 'gtest_test_executable',
136 ],
137 'sources': [
138 'gtest/test/gtest_no_test_unittest.cc',
139 ],
140 },
141 {
142 'target_name': 'gtest_param_test',
143 'dependencies': [
144 'gtest_test_executable',
145 ],
146 'sources': [
147 'gtest/test/gtest-param-test_test.cc',
148 'gtest/test/gtest-param-test_test.h',
149 'gtest/test/gtest-param-test2_test.cc',
150 ],
151 },
152 {
153 'target_name': 'gtest_premature_exit_test',
154 'dependencies': [
155 'gtest_test_executable',
156 ],
157 'sources': [
158 'gtest/test/gtest_premature_exit_test.cc',
159 ],
160 },
161 {
162 'target_name': 'gtest_repeat_test',
163 'dependencies': [
164 'gtest_test_executable',
165 ],
166 'sources': [
167 'gtest/test/gtest_repeat_test.cc',
168 ],
169 },
170 {
171 'target_name': 'gtest_sole_header_test',
172 'dependencies': [
173 'gtest_test_executable',
174 'gtest_main',
175 ],
176 'sources': [
177 'gtest/test/gtest_sole_header_test.cc',
178 ],
179 },
180 {
181 'target_name': 'gtest_stress_test',
182 'dependencies': [
183 'gtest_test_executable',
184 ],
185 'sources': [
186 'gtest/test/gtest_stress_test.cc',
187 ],
188 },
189 {
190 'target_name': 'gtest_unittest_api_test',
191 'dependencies': [
192 'gtest_test_executable',
193 ],
194 'sources': [
195 'gtest/test/gtest-unittest-api_test.cc',
196 ],
197 },
198 {
199 'target_name': 'gtest_all_tests',
200 'type': 'none',
201 'dependencies': [
202 'gtest_all_test',
203 'gtest_environment_test',
204 'gtest_no_test',
205 'gtest_param_test',
206 'gtest_premature_exit_test',
207 'gtest_repeat_test',
208 'gtest_sole_header_test',
209 'gtest_stress_test',
210 'gtest_unittest_api_test',
211 ],
212 },
213 ],
214 }
OLDNEW
« no previous file with comments | « third_party/gtest/README.crashpad ('k') | third_party/gyp/README.crashpad » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698