Globally replace <(library) with static_library
We provided <(library) as a variable to support a peculiar
build configuration on Linux. We no longer support that build
configuration, so we can simplify this code to no longer use
a variable.
Review URL: http://codereview.chromium.org/7051014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86004 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/testing/gtest.gyp b/testing/gtest.gyp
index 1a91ac5..c3116f1 100644
--- a/testing/gtest.gyp
+++ b/testing/gtest.gyp
@@ -6,7 +6,7 @@
'targets': [
{
'target_name': 'gtest',
- 'type': '<(library)',
+ 'type': 'static_library',
'msvs_guid': 'BFE8E2A7-3B3B-43B0-A994-3058B852DB8B',
'sources': [
'gtest/include/gtest/gtest-death-test.h',
@@ -123,7 +123,7 @@
},
{
'target_name': 'gtest_main',
- 'type': '<(library)',
+ 'type': 'static_library',
'dependencies': [
'gtest',
],