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