OLD | NEW |
---|---|
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'gtest', | 8 'target_name': 'gtest', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'sources': [ | 10 'sources': [ |
11 'gtest/include/gtest/gtest-death-test.h', | 11 'gtest/include/gtest/gtest-death-test.h', |
12 'gtest/include/gtest/gtest-message.h', | 12 'gtest/include/gtest/gtest-message.h', |
13 'gtest/include/gtest/gtest-param-test.h', | 13 'gtest/include/gtest/gtest-param-test.h', |
14 'gtest/include/gtest/gtest-printers.h', | 14 'gtest/include/gtest/gtest-printers.h', |
15 'gtest/include/gtest/gtest-spi.h', | 15 'gtest/include/gtest/gtest-spi.h', |
16 'gtest/include/gtest/gtest-test-part.h', | 16 'gtest/include/gtest/gtest-test-part.h', |
17 'gtest/include/gtest/gtest-typed-test.h', | 17 'gtest/include/gtest/gtest-typed-test.h', |
18 'gtest/include/gtest/gtest.h', | 18 'gtest/include/gtest/gtest.h', |
19 'gtest/include/gtest/gtest_pred_impl.h', | 19 'gtest/include/gtest/gtest_pred_impl.h', |
20 'gtest/include/gtest/gtest_prod.h', | 20 'gtest/include/gtest/gtest_prod.h', |
M-A Ruel
2011/11/29 15:22:51
I'd prefer to have it removed from here and have g
ensonic
2011/11/30 12:31:54
Done.
| |
21 'gtest/include/gtest/internal/gtest-death-test-internal.h', | 21 'gtest/include/gtest/internal/gtest-death-test-internal.h', |
22 'gtest/include/gtest/internal/gtest-filepath.h', | 22 'gtest/include/gtest/internal/gtest-filepath.h', |
23 'gtest/include/gtest/internal/gtest-internal.h', | 23 'gtest/include/gtest/internal/gtest-internal.h', |
24 'gtest/include/gtest/internal/gtest-linked_ptr.h', | 24 'gtest/include/gtest/internal/gtest-linked_ptr.h', |
25 'gtest/include/gtest/internal/gtest-param-util-generated.h', | 25 'gtest/include/gtest/internal/gtest-param-util-generated.h', |
26 'gtest/include/gtest/internal/gtest-param-util.h', | 26 'gtest/include/gtest/internal/gtest-param-util.h', |
27 'gtest/include/gtest/internal/gtest-port.h', | 27 'gtest/include/gtest/internal/gtest-port.h', |
28 'gtest/include/gtest/internal/gtest-string.h', | 28 'gtest/include/gtest/internal/gtest-string.h', |
29 'gtest/include/gtest/internal/gtest-tuple.h', | 29 'gtest/include/gtest/internal/gtest-tuple.h', |
30 'gtest/include/gtest/internal/gtest-type-util.h', | 30 'gtest/include/gtest/internal/gtest-type-util.h', |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
123 { | 123 { |
124 'target_name': 'gtest_main', | 124 'target_name': 'gtest_main', |
125 'type': 'static_library', | 125 'type': 'static_library', |
126 'dependencies': [ | 126 'dependencies': [ |
127 'gtest', | 127 'gtest', |
128 ], | 128 ], |
129 'sources': [ | 129 'sources': [ |
130 'gtest/src/gtest_main.cc', | 130 'gtest/src/gtest_main.cc', |
131 ], | 131 ], |
132 }, | 132 }, |
133 { | |
134 'target_name': 'gtest_prod', | |
135 'type': 'none', | |
136 'sources': [ | |
137 'gtest/include/gtest/gtest_prod.h', | |
138 ], | |
139 }, | |
133 ], | 140 ], |
134 } | 141 } |
OLD | NEW |