| OLD | NEW |
| 1 { | 1 { |
| 2 # TODO(binji): pnacl fails with error: | 2 # TODO(binji): pnacl fails with error: |
| 3 # In file included from gtest.cc:133: | 3 # In file included from gtest.cc:133: |
| 4 # pepper_23/include/gtest/internal/src/gtest-internal-inl.h:213:8: | 4 # pepper_23/include/gtest/internal/src/gtest-internal-inl.h:213:8: |
| 5 # error: private field 'pretty_' is not used [-Werror,-Wunused-private-field
] | 5 # error: private field 'pretty_' is not used [-Werror,-Wunused-private-field
] |
| 6 # | 6 # |
| 7 # We can fix this by passing -Wno-unused-private-field to clang, but gcc | 7 # We can fix this by passing -Wno-unused-private-field to clang, but gcc |
| 8 # doesn't support this flag so we'll have to support splitting CXXFLAGS based | 8 # doesn't support this flag so we'll have to support splitting CXXFLAGS based |
| 9 # on TOOL first. | 9 # on TOOL first. |
| 10 'TOOLS': ['newlib:x86', 'newlib:x64', 'glibc', 'win', 'linux'], | 10 'TOOLS': ['newlib:x86', 'newlib:x64', 'glibc', 'win', 'linux'], |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 # gtest is not installed in the SDK, I don't really care about the | 75 # gtest is not installed in the SDK, I don't really care about the |
| 76 # directory layout. | 76 # directory layout. |
| 77 # TODO(binji): If we decide to include gtest, put this file in a better | 77 # TODO(binji): If we decide to include gtest, put this file in a better |
| 78 # spot. | 78 # spot. |
| 79 'FILES': [ | 79 'FILES': [ |
| 80 'gtest-internal-inl.h', | 80 'gtest-internal-inl.h', |
| 81 ], | 81 ], |
| 82 'DEST': 'include/gtest/internal/src', | 82 'DEST': 'include/gtest/internal/src', |
| 83 }, | 83 }, |
| 84 ], | 84 ], |
| 85 'DATA': [ |
| 86 'Makefile' |
| 87 ], |
| 85 'DEST': 'testlibs', | 88 'DEST': 'testlibs', |
| 86 'NAME': 'gtest', | 89 'NAME': 'gtest', |
| 87 } | 90 } |
| OLD | NEW |