40 lines
866 B
Python
40 lines
866 B
Python
# Copyright 2013 Google Inc. All Rights Reserved.
|
|
# This is for googletest release 1.8.0
|
|
{
|
|
'target_defaults': {
|
|
'type': 'static_library',
|
|
'include_dirs': [
|
|
'googletest/googlemock',
|
|
'googletest/googlemock/include',
|
|
'googletest/googletest',
|
|
'googletest/googletest/include',
|
|
],
|
|
'direct_dependent_settings': {
|
|
'include_dirs': [
|
|
'googletest/googlemock/include',
|
|
'googletest/googletest/include',
|
|
],
|
|
},
|
|
},
|
|
'targets': [
|
|
{
|
|
'target_name': 'gmock',
|
|
'sources': [
|
|
'googletest/googlemock/src/gmock-all.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'gmock_main',
|
|
'sources': [
|
|
'googletest/googlemock/src/gmock_main.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'gtest',
|
|
'sources': [
|
|
'googletest/googletest/src/gtest-all.cc',
|
|
],
|
|
},
|
|
],
|
|
}
|