0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/deps/gtest/gtest.gyp
Ben Noordhuis 008078862e deps: check in gtest, add util unit test
Check in a gypified gtest and add a simple unit test to show that the
basic infrastructure is in place.

PR-URL: https://github.com/iojs/io.js/pull/1199
Refs: https://github.com/iojs/io.js/issues/1193
Reviewed-By: Fedor Indutny <fedor@indutny.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
2015-04-01 22:35:56 +02:00

25 lines
590 B
Python

{
'targets': [
{
'target_name': 'gtest',
'type': 'static_library',
'cflags': ['-Wno-missing-field-initializers'],
'direct_dependent_settings': {
'include_dirs': ['include'],
},
'include_dirs': ['.', 'include'],
'sources': [
'src/gtest-death-test.cc',
'src/gtest-filepath.cc',
'src/gtest-internal-inl.h',
'src/gtest-port.cc',
'src/gtest-printers.cc',
'src/gtest-test-part.cc',
'src/gtest-typed-test.cc',
'src/gtest.cc',
'src/gtest_main.cc',
],
}
],
}