| OLD | NEW |
| 1 { | 1 { |
| 2 'SEARCH': [ | 2 'SEARCH': [ |
| 3 '.', | 3 '../../../../testing/gtest', |
| 4 '../../../../testing/gtest/include/gtest', | |
| 5 '../../../../testing/gtest/include/gtest/internal', | |
| 6 '../../../../testing/gtest/src', | |
| 7 ], | 4 ], |
| 8 'TARGETS': [ | 5 'DATA': [ |
| 9 { | 6 'src/gtest.cc', |
| 10 'NAME' : 'gtest', | 7 'src/gtest_main.cc', |
| 11 'TYPE' : 'lib', | 8 'src/gtest-death-test.cc', |
| 12 'SOURCES' : [ | 9 'src/gtest-all.cc', |
| 13 'gtest.cc', | 10 'src/gtest-filepath.cc', |
| 14 'gtest-death-test.cc', | 11 'src/gtest-port.cc', |
| 15 'gtest-filepath.cc', | 12 'src/gtest-printers.cc', |
| 16 'gtest-port.cc', | 13 'src/gtest-test-part.cc', |
| 17 'gtest-printers.cc', | 14 'src/gtest-typed-test.cc', |
| 18 'gtest-test-part.cc', | 15 'src/gtest-internal-inl.h', |
| 19 'gtest-typed-test.cc', | 16 'include/gtest/gtest.h', |
| 20 ], | 17 'include/gtest/gtest-death-test.h', |
| 21 'INCLUDES': [ | 18 'include/gtest/gtest.h', |
| 22 # See comment below about gtest-internal-inl.h | 19 'include/gtest/gtest-message.h', |
| 23 '$(NACL_SDK_ROOT)/include/gtest/internal', | 20 'include/gtest/gtest-param-test.h', |
| 24 ], | 21 'include/gtest/gtest_pred_impl.h', |
| 25 } | 22 'include/gtest/gtest-printers.h', |
| 26 ], | 23 'include/gtest/gtest_prod.h', |
| 27 'HEADERS': [ | 24 'include/gtest/gtest-spi.h', |
| 28 { | 25 'include/gtest/gtest-test-part.h', |
| 29 'FILES': [ | 26 'include/gtest/gtest-typed-test.h', |
| 30 'gtest-death-test.h', | 27 'include/gtest/internal/gtest-death-test-internal.h', |
| 31 'gtest.h', | 28 'include/gtest/internal/gtest-filepath.h', |
| 32 'gtest-message.h', | 29 'include/gtest/internal/gtest-internal.h', |
| 33 'gtest-param-test.h', | 30 'include/gtest/internal/gtest-linked_ptr.h', |
| 34 'gtest_pred_impl.h', | 31 'include/gtest/internal/gtest-param-util-generated.h', |
| 35 'gtest-printers.h', | 32 'include/gtest/internal/gtest-param-util.h', |
| 36 'gtest_prod.h', | 33 'include/gtest/internal/gtest-port-arch.h', |
| 37 'gtest-spi.h', | 34 'include/gtest/internal/gtest-port.h', |
| 38 'gtest-test-part.h', | 35 'include/gtest/internal/gtest-string.h', |
| 39 'gtest-typed-test.h', | 36 'include/gtest/internal/gtest-tuple.h', |
| 40 ], | 37 'include/gtest/internal/gtest-type-util.h', |
| 41 'DEST': 'include/gtest', | 38 'include/gtest/internal/custom/gtest.h', |
| 42 }, | 39 'include/gtest/internal/custom/gtest-port.h', |
| 43 { | 40 'include/gtest/internal/custom/gtest-printers.h', |
| 44 'FILES': [ | |
| 45 'gtest-death-test-internal.h', | |
| 46 'gtest-filepath.h', | |
| 47 'gtest-internal.h', | |
| 48 'gtest-linked_ptr.h', | |
| 49 'gtest-param-util-generated.h', | |
| 50 'gtest-param-util.h', | |
| 51 'gtest-port-arch.h', | |
| 52 'gtest-port.h', | |
| 53 'gtest-string.h', | |
| 54 'gtest-tuple.h', | |
| 55 'gtest-type-util.h', | |
| 56 ], | |
| 57 'DEST': 'include/gtest/internal', | |
| 58 }, | |
| 59 { | |
| 60 'FILES': [ | |
| 61 'gtest.h', | |
| 62 'gtest-port.h', | |
| 63 'gtest-printers.h', | |
| 64 ], | |
| 65 'DEST': 'include/gtest/internal/custom', | |
| 66 }, | |
| 67 { | |
| 68 # This is cheesy, but gtest.cc includes "src/gtest-internal-inl.h". Since | |
| 69 # gtest is not installed in the SDK, I don't really care about the | |
| 70 # directory layout. | |
| 71 # TODO(binji): If we decide to include gtest, put this file in a better | |
| 72 # spot. | |
| 73 'FILES': [ | |
| 74 'gtest-internal-inl.h', | |
| 75 ], | |
| 76 'DEST': 'include/gtest/internal/src', | |
| 77 }, | |
| 78 ], | 41 ], |
| 79 'DEST': 'src', | 42 'DEST': 'src', |
| 80 'NAME': 'gtest', | 43 'NAME': 'gtest', |
| 81 } | 44 } |
| OLD | NEW |