32 lines
701 B
Python
32 lines
701 B
Python
# Copyright 2013 Google Inc. All Rights Reserved.
|
|
{
|
|
'target_defaults': {
|
|
'type': 'static_library',
|
|
'include_dirs': [
|
|
'../../third_party/gmock',
|
|
'../../third_party/gmock/include',
|
|
'../../third_party/gmock/gtest/include',
|
|
],
|
|
'direct_dependent_settings': {
|
|
'include_dirs': [
|
|
'../../third_party/gmock/include',
|
|
'../../third_party/gmock/gtest/include',
|
|
],
|
|
},
|
|
},
|
|
'targets': [
|
|
{
|
|
'target_name': 'gmock',
|
|
'sources': [
|
|
'../../third_party/gmock/src/gmock-all.cc',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'gmock_main',
|
|
'sources': [
|
|
'../../third_party/gmock/src/gmock_main.cc',
|
|
],
|
|
},
|
|
],
|
|
}
|