|
3 | 3 | {
|
4 | 4 | 'target_name': 'gtest',
|
5 | 5 | 'type': 'static_library',
|
6 |
| - 'cflags': ['-Wno-missing-field-initializers'], |
| 6 | + 'cflags': [ |
| 7 | + '-Wno-missing-field-initializers', |
| 8 | + ], |
7 | 9 | 'direct_dependent_settings': {
|
8 |
| - 'include_dirs': ['include'], |
| 10 | + 'include_dirs': [ |
| 11 | + 'include', |
| 12 | + ], |
9 | 13 | },
|
10 |
| - 'include_dirs': ['.', 'include'], |
| 14 | + 'defines': [ |
| 15 | + 'GTEST_LANG_CXX11=1', |
| 16 | + 'GTEST_HAS_TR1_TUPLE=0', |
| 17 | + ], |
| 18 | + 'include_dirs': [ |
| 19 | + '.', |
| 20 | + 'include', |
| 21 | + ], |
11 | 22 | 'sources': [
|
12 | 23 | 'src/gtest-death-test.cc',
|
13 | 24 | 'src/gtest-filepath.cc',
|
|
18 | 29 | 'src/gtest-typed-test.cc',
|
19 | 30 | 'src/gtest.cc',
|
20 | 31 | 'src/gtest_main.cc',
|
| 32 | + 'include/gtest/internal/gtest-death-test-internal.h', |
| 33 | + 'include/gtest/internal/gtest-filepath.h', |
| 34 | + 'include/gtest/internal/gtest-internal.h', |
| 35 | + 'include/gtest/internal/gtest-linked_ptr.h', |
| 36 | + 'include/gtest/internal/gtest-param-util.h', |
| 37 | + 'include/gtest/internal/gtest-param-util-generated.h', |
| 38 | + 'include/gtest/internal/gtest-port.h', |
| 39 | + 'include/gtest/internal/gtest-string.h', |
| 40 | + 'include/gtest/internal/gtest-tuple.h', |
| 41 | + 'include/gtest/internal/gtest-type-util.h', |
| 42 | + 'include/gtest/gtest.h', |
| 43 | + 'include/gtest/gtest-death-test.h', |
| 44 | + 'include/gtest/gtest-message.h', |
| 45 | + 'include/gtest/gtest-param-test.h', |
| 46 | + 'include/gtest/gtest-printers.h', |
| 47 | + 'include/gtest/gtest-spi.h', |
| 48 | + 'include/gtest/gtest-test-part.h', |
| 49 | + 'include/gtest/gtest-typed-test.h', |
| 50 | + 'include/gtest/gtest_pred_impl.h', |
| 51 | + 'include/gtest/gtest_prod.h', |
21 | 52 | ],
|
22 | 53 | }
|
23 | 54 | ],
|
|
0 commit comments