Source release v2.2.0-0-903 + third_party libs

Change-Id: I03f670eaeb052bc741abb347be06f8ddc58418e7
This commit is contained in:
Joey Parrish
2014-12-15 10:35:08 -08:00
parent 5318232d46
commit 1955c9c2c9
85 changed files with 5594 additions and 2830 deletions

38
third_party/gmock.gyp vendored Normal file
View File

@@ -0,0 +1,38 @@
# Copyright 2013 Google Inc. All Rights Reserved.
{
'target_defaults': {
'type': 'static_library',
'include_dirs': [
'gmock',
'gmock/include',
'gmock/gtest',
'gmock/gtest/include',
],
'direct_dependent_settings': {
'include_dirs': [
'gmock/include',
'gmock/gtest/include',
],
},
},
'targets': [
{
'target_name': 'gmock',
'sources': [
'gmock/src/gmock-all.cc',
],
},
{
'target_name': 'gmock_main',
'sources': [
'gmock/src/gmock_main.cc',
],
},
{
'target_name': 'gtest',
'sources': [
'gmock/gtest/src/gtest-all.cc',
],
},
],
}