OLD | NEW |
1 { | 1 { |
2 'TOOLS': ['bionic', 'newlib', 'glibc', 'pnacl', 'win', 'linux'], | 2 'TOOLS': ['bionic', 'newlib', 'glibc', 'pnacl', 'win', 'linux'], |
3 'SEARCH': [ | 3 'SEARCH': [ |
4 '.', | 4 '.', |
5 '../../../../testing/gtest/include/gtest', | 5 '../../../../testing/gtest/include/gtest', |
6 '../../../../testing/gtest/include/gtest/internal', | 6 '../../../../testing/gtest/include/gtest/internal', |
7 '../../../../testing/gtest/src', | 7 '../../../../testing/gtest/src', |
8 ], | 8 ], |
9 'TARGETS': [ | 9 'TARGETS': [ |
10 { | 10 { |
11 'NAME' : 'gtest', | 11 'NAME' : 'gtest', |
12 'TYPE' : 'lib', | 12 'TYPE' : 'lib', |
13 'SOURCES' : [ | 13 'SOURCES' : [ |
14 'gtest.cc', | 14 'gtest.cc', |
15 'gtest-death-test.cc', | 15 'gtest-death-test.cc', |
16 'gtest-filepath.cc', | 16 'gtest-filepath.cc', |
17 'gtest_main.cc', | 17 'gtest_main.cc', |
18 'gtest-port.cc', | 18 'gtest-port.cc', |
19 'gtest-printers.cc', | 19 'gtest-printers.cc', |
20 'gtest-test-part.cc', | 20 'gtest-test-part.cc', |
21 'gtest-typed-test.cc', | 21 'gtest-typed-test.cc', |
22 'nacl_gtest_dummy_sys.cc', | 22 'nacl_gtest_dummy_sys.cc', |
23 ], | 23 ], |
24 'INCLUDES': [ | 24 'INCLUDES': [ |
25 # See comment below about gtest-internal-inl.h | 25 # See comment below about gtest-internal-inl.h |
26 '$(NACL_SDK_ROOT)/include/gtest/internal', | 26 '$(NACL_SDK_ROOT)/include/gtest/internal', |
27 ], | 27 ], |
| 28 'CXXFLAGS': ['-Wno-unused-const-variable'], |
28 } | 29 } |
29 ], | 30 ], |
30 'HEADERS': [ | 31 'HEADERS': [ |
31 { | 32 { |
32 'FILES': [ | 33 'FILES': [ |
33 'gtest-death-test.h', | 34 'gtest-death-test.h', |
34 'gtest.h', | 35 'gtest.h', |
35 'gtest-message.h', | 36 'gtest-message.h', |
36 'gtest-param-test.h', | 37 'gtest-param-test.h', |
37 'gtest_pred_impl.h', | 38 'gtest_pred_impl.h', |
(...skipping 28 matching lines...) Expand all Loading... |
66 # spot. | 67 # spot. |
67 'FILES': [ | 68 'FILES': [ |
68 'gtest-internal-inl.h', | 69 'gtest-internal-inl.h', |
69 ], | 70 ], |
70 'DEST': 'include/gtest/internal/src', | 71 'DEST': 'include/gtest/internal/src', |
71 }, | 72 }, |
72 ], | 73 ], |
73 'DEST': 'src', | 74 'DEST': 'src', |
74 'NAME': 'gtest', | 75 'NAME': 'gtest', |
75 } | 76 } |
OLD | NEW |