Remove <(library) usage from gyp files.

BUG=chromium:111541

Patch by Thiago Farina <tfarina@chromium.org>.
Original code review: https://breakpad.appspot.com/513002/
Review URL: https://breakpad.appspot.com/515002

git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1101 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
thestig@chromium.org 2013-01-19 00:19:16 +00:00
parent 7e72c6677a
commit 834f7ee611
4 changed files with 6 additions and 6 deletions

View file

@ -34,7 +34,7 @@
'targets': [
{
'target_name': 'crash_generation_server',
'type': '<(library)',
'type': 'static_library',
'sources': [
'client_info.cc',
'crash_generation_server.cc',
@ -50,7 +50,7 @@
},
{
'target_name': 'crash_generation_client',
'type': '<(library)',
'type': 'static_library',
'include_dirs': [
'<(DEPTH)',
],

View file

@ -34,7 +34,7 @@
'targets': [
{
'target_name': 'exception_handler',
'type': '<(library)',
'type': 'static_library',
'sources': [
"exception_handler.cc",
"exception_handler.h",

View file

@ -34,7 +34,7 @@
'targets': [
{
'target_name': 'crash_report_sender',
'type': '<(library)',
'type': 'static_library',
'sources': [
'crash_report_sender.cc',
'crash_report_sender.h',

View file

@ -36,7 +36,7 @@
'targets': [
{
'target_name': 'gtest',
'type': '<(library)',
'type': 'static_library',
'include_dirs': [
'<(DEPTH)/testing/include',
'<(DEPTH)/testing/gtest',
@ -54,7 +54,7 @@
},
{
'target_name': 'gmock',
'type': '<(library)',
'type': 'static_library',
'include_dirs': [
'<(DEPTH)/testing/include',
'<(DEPTH)/testing/',