mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
008078862e
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>
25 lines
590 B
Python
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',
|
|
],
|
|
}
|
|
],
|
|
}
|