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', | |
binji
2014/08/05 18:53:10
OK, but this means we can't use gtest independent
| |
23 ], | 22 ], |
24 'INCLUDES': [ | 23 'INCLUDES': [ |
25 # See comment below about gtest-internal-inl.h | 24 # See comment below about gtest-internal-inl.h |
26 '$(NACL_SDK_ROOT)/include/gtest/internal', | 25 '$(NACL_SDK_ROOT)/include/gtest/internal', |
27 ], | 26 ], |
28 'CXXFLAGS': ['-Wno-unused-const-variable'], | 27 'CXXFLAGS': ['-Wno-unused-const-variable'], |
29 } | 28 } |
30 ], | 29 ], |
31 'HEADERS': [ | 30 'HEADERS': [ |
32 { | 31 { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
67 # spot. | 66 # spot. |
68 'FILES': [ | 67 'FILES': [ |
69 'gtest-internal-inl.h', | 68 'gtest-internal-inl.h', |
70 ], | 69 ], |
71 'DEST': 'include/gtest/internal/src', | 70 'DEST': 'include/gtest/internal/src', |
72 }, | 71 }, |
73 ], | 72 ], |
74 'DEST': 'src', | 73 'DEST': 'src', |
75 'NAME': 'gtest', | 74 'NAME': 'gtest', |
76 } | 75 } |
OLD | NEW |