OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'includes': [ | |
7 'gtest.gypi', | |
8 ], | |
9 'targets': [ | 6 'targets': [ |
10 { | 7 { |
11 'target_name': 'gtest', | 8 'target_name': 'gtest', |
12 'toolsets': ['host', 'target'], | 9 'toolsets': ['host', 'target'], |
13 'type': 'static_library', | 10 'type': 'static_library', |
14 'sources': [ | 11 'sources': [ |
15 '<@(gtest_sources)', | 12 'gtest/include/gtest/gtest-death-test.h', |
| 13 'gtest/include/gtest/gtest-message.h', |
| 14 'gtest/include/gtest/gtest-param-test.h', |
| 15 'gtest/include/gtest/gtest-printers.h', |
| 16 'gtest/include/gtest/gtest-spi.h', |
| 17 'gtest/include/gtest/gtest-test-part.h', |
| 18 'gtest/include/gtest/gtest-typed-test.h', |
| 19 'gtest/include/gtest/gtest.h', |
| 20 'gtest/include/gtest/gtest_pred_impl.h', |
| 21 'gtest/include/gtest/internal/gtest-death-test-internal.h', |
| 22 'gtest/include/gtest/internal/gtest-filepath.h', |
| 23 'gtest/include/gtest/internal/gtest-internal.h', |
| 24 'gtest/include/gtest/internal/gtest-linked_ptr.h', |
| 25 'gtest/include/gtest/internal/gtest-param-util-generated.h', |
| 26 'gtest/include/gtest/internal/gtest-param-util.h', |
| 27 'gtest/include/gtest/internal/gtest-port.h', |
| 28 'gtest/include/gtest/internal/gtest-string.h', |
| 29 'gtest/include/gtest/internal/gtest-tuple.h', |
| 30 'gtest/include/gtest/internal/gtest-type-util.h', |
| 31 'gtest/src/gtest-all.cc', |
| 32 'gtest/src/gtest-death-test.cc', |
| 33 'gtest/src/gtest-filepath.cc', |
| 34 'gtest/src/gtest-internal-inl.h', |
| 35 'gtest/src/gtest-port.cc', |
| 36 'gtest/src/gtest-printers.cc', |
| 37 'gtest/src/gtest-test-part.cc', |
| 38 'gtest/src/gtest-typed-test.cc', |
| 39 'gtest/src/gtest.cc', |
| 40 'multiprocess_func_list.cc', |
| 41 'multiprocess_func_list.h', |
| 42 'platform_test.h', |
| 43 ], |
| 44 'sources!': [ |
| 45 'gtest/src/gtest-all.cc', # Not needed by our build. |
16 ], | 46 ], |
17 'include_dirs': [ | 47 'include_dirs': [ |
18 'gtest', | 48 'gtest', |
19 'gtest/include', | 49 'gtest/include', |
20 ], | 50 ], |
21 'dependencies': [ | 51 'dependencies': [ |
22 'gtest_prod', | 52 'gtest_prod', |
23 ], | 53 ], |
24 'defines': [ | 54 'defines': [ |
25 # In order to allow regex matches in gtest to be shared between Windows | 55 # In order to allow regex matches in gtest to be shared between Windows |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 { | 240 { |
211 'target_name': 'gtest_prod', | 241 'target_name': 'gtest_prod', |
212 'toolsets': ['host', 'target'], | 242 'toolsets': ['host', 'target'], |
213 'type': 'none', | 243 'type': 'none', |
214 'sources': [ | 244 'sources': [ |
215 'gtest/include/gtest/gtest_prod.h', | 245 'gtest/include/gtest/gtest_prod.h', |
216 ], | 246 ], |
217 }, | 247 }, |
218 ], | 248 ], |
219 } | 249 } |
OLD | NEW |