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/breakpad/breakpad_handler.gypi b/breakpad/breakpad_handler.gypi
index 5d20542..521939b 100644
--- a/breakpad/breakpad_handler.gypi
+++ b/breakpad/breakpad_handler.gypi
@@ -36,7 +36,7 @@
'targets': [
{
'target_name': 'breakpad_handler',
- 'type': '<(library)',
+ 'type': 'static_library',
'variables': {
'breakpad_handler_target': 1,
},
@@ -58,7 +58,7 @@
# BREAKPAD_NO_TERMINATE_THREAD as that define makes breakpad crash
# when created and destroyed in DllMain.
'target_name': 'breakpad_handler_dll',
- 'type': '<(library)',
+ 'type': 'static_library',
'variables': {
'breakpad_handler_target': 1,
},
@@ -72,7 +72,7 @@
},
{
'target_name': 'breakpad_handler_win64',
- 'type': '<(library)',
+ 'type': 'static_library',
'variables': {
'breakpad_handler_target': 1,
},