| OLD | NEW |
| 1 { | 1 { |
| 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], |
| 3 'SEARCH': [ | 3 'SEARCH': [ |
| 4 '.', |
| 4 '../../../../testing/gtest/include/gtest', | 5 '../../../../testing/gtest/include/gtest', |
| 5 '../../../../testing/gtest/include/gtest/internal', | 6 '../../../../testing/gtest/include/gtest/internal', |
| 6 '../../../../testing/gtest/src', | 7 '../../../../testing/gtest/src', |
| 7 ], | 8 ], |
| 8 'TARGETS': [ | 9 'TARGETS': [ |
| 9 { | 10 { |
| 10 'NAME' : 'gtest', | 11 'NAME' : 'gtest', |
| 11 'TYPE' : 'lib', | 12 'TYPE' : 'lib', |
| 12 'SOURCES' : [ | 13 'SOURCES' : [ |
| 13 'gtest.cc', | 14 'gtest.cc', |
| 14 'gtest-death-test.cc', | 15 'gtest-death-test.cc', |
| 15 'gtest-filepath.cc', | 16 'gtest-filepath.cc', |
| 16 'gtest_main.cc', | 17 'gtest_main.cc', |
| 17 'gtest-port.cc', | 18 'gtest-port.cc', |
| 18 'gtest-printers.cc', | 19 'gtest-printers.cc', |
| 19 'gtest-test-part.cc', | 20 'gtest-test-part.cc', |
| 20 'gtest-typed-test.cc', | 21 'gtest-typed-test.cc', |
| 22 'nacl_gtest_dummy_sys.cc', |
| 21 ], | 23 ], |
| 22 # Ignore warning: | 24 # Ignore warning: |
| 23 # gtest.cc:2555: error: enumeration value ‘COLOR_DEFAULT’ not handled in
switch | 25 # gtest.cc:2555: error: enumeration value ‘COLOR_DEFAULT’ not handled in
switch |
| 24 'CXXFLAGS': ['-Wno-switch-enum'], | 26 'CXXFLAGS': ['-Wno-switch-enum'], |
| 25 'INCLUDES': [ | 27 'INCLUDES': [ |
| 26 # See comment below about gtest-internal-inl.h | 28 # See comment below about gtest-internal-inl.h |
| 27 '$(NACL_SDK_ROOT)/include/gtest/internal', | 29 '$(NACL_SDK_ROOT)/include/gtest/internal', |
| 28 ], | 30 ], |
| 29 } | 31 } |
| 30 ], | 32 ], |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 'FILES': [ | 70 'FILES': [ |
| 69 'gtest-internal-inl.h', | 71 'gtest-internal-inl.h', |
| 70 ], | 72 ], |
| 71 'DEST': 'include/gtest/internal/src', | 73 'DEST': 'include/gtest/internal/src', |
| 72 }, | 74 }, |
| 73 ], | 75 ], |
| 74 'DEST': 'testing', | 76 'DEST': 'testing', |
| 75 'NAME': 'gtest', | 77 'NAME': 'gtest', |
| 76 'EXPERIMENTAL': True, | 78 'EXPERIMENTAL': True, |
| 77 } | 79 } |
| OLD | NEW |