OLD | NEW |
1 # Copyright 2014 the V8 project authors. All rights reserved. | 1 # Copyright 2014 the V8 project 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'gtest', | 8 'target_name': 'gtest', |
9 'toolsets': ['host', 'target'], | 9 'toolsets': ['host', 'target'], |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 19 matching lines...) Expand all Loading... |
30 'gtest/include/gtest/internal/gtest-type-util.h', | 30 'gtest/include/gtest/internal/gtest-type-util.h', |
31 'gtest/src/gtest-all.cc', | 31 'gtest/src/gtest-all.cc', |
32 'gtest/src/gtest-death-test.cc', | 32 'gtest/src/gtest-death-test.cc', |
33 'gtest/src/gtest-filepath.cc', | 33 'gtest/src/gtest-filepath.cc', |
34 'gtest/src/gtest-internal-inl.h', | 34 'gtest/src/gtest-internal-inl.h', |
35 'gtest/src/gtest-port.cc', | 35 'gtest/src/gtest-port.cc', |
36 'gtest/src/gtest-printers.cc', | 36 'gtest/src/gtest-printers.cc', |
37 'gtest/src/gtest-test-part.cc', | 37 'gtest/src/gtest-test-part.cc', |
38 'gtest/src/gtest-typed-test.cc', | 38 'gtest/src/gtest-typed-test.cc', |
39 'gtest/src/gtest.cc', | 39 'gtest/src/gtest.cc', |
| 40 'gtest-type-names.h', |
40 ], | 41 ], |
41 'sources!': [ | 42 'sources!': [ |
42 'gtest/src/gtest-all.cc', # Not needed by our build. | 43 'gtest/src/gtest-all.cc', # Not needed by our build. |
43 ], | 44 ], |
44 'include_dirs': [ | 45 'include_dirs': [ |
45 'gtest', | 46 'gtest', |
46 'gtest/include', | 47 'gtest/include', |
47 ], | 48 ], |
48 'dependencies': [ | 49 'dependencies': [ |
49 'gtest_prod', | 50 'gtest_prod', |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 { | 150 { |
150 'target_name': 'gtest_prod', | 151 'target_name': 'gtest_prod', |
151 'toolsets': ['host', 'target'], | 152 'toolsets': ['host', 'target'], |
152 'type': 'none', | 153 'type': 'none', |
153 'sources': [ | 154 'sources': [ |
154 'gtest/include/gtest/gtest_prod.h', | 155 'gtest/include/gtest/gtest_prod.h', |
155 ], | 156 ], |
156 }, | 157 }, |
157 ], | 158 ], |
158 } | 159 } |
OLD | NEW |