From 834f7ee611b98c487e1530bef6c4e13a4e1f676c Mon Sep 17 00:00:00 2001 From: "thestig@chromium.org" Date: Sat, 19 Jan 2013 00:19:16 +0000 Subject: [PATCH] Remove <(library) usage from gyp files. BUG=chromium:111541 Patch by Thiago Farina . 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 --- src/client/windows/crash_generation/crash_generation.gyp | 4 ++-- src/client/windows/handler/exception_handler.gyp | 2 +- src/client/windows/sender/crash_report_sender.gyp | 2 +- src/client/windows/unittests/testing.gyp | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/client/windows/crash_generation/crash_generation.gyp b/src/client/windows/crash_generation/crash_generation.gyp index ecc82d04..23862d75 100644 --- a/src/client/windows/crash_generation/crash_generation.gyp +++ b/src/client/windows/crash_generation/crash_generation.gyp @@ -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)', ], diff --git a/src/client/windows/handler/exception_handler.gyp b/src/client/windows/handler/exception_handler.gyp index e1e65eec..77293627 100644 --- a/src/client/windows/handler/exception_handler.gyp +++ b/src/client/windows/handler/exception_handler.gyp @@ -34,7 +34,7 @@ 'targets': [ { 'target_name': 'exception_handler', - 'type': '<(library)', + 'type': 'static_library', 'sources': [ "exception_handler.cc", "exception_handler.h", diff --git a/src/client/windows/sender/crash_report_sender.gyp b/src/client/windows/sender/crash_report_sender.gyp index 0c2421d1..e4db3a86 100644 --- a/src/client/windows/sender/crash_report_sender.gyp +++ b/src/client/windows/sender/crash_report_sender.gyp @@ -34,7 +34,7 @@ 'targets': [ { 'target_name': 'crash_report_sender', - 'type': '<(library)', + 'type': 'static_library', 'sources': [ 'crash_report_sender.cc', 'crash_report_sender.h', diff --git a/src/client/windows/unittests/testing.gyp b/src/client/windows/unittests/testing.gyp index 85854288..2630264e 100644 --- a/src/client/windows/unittests/testing.gyp +++ b/src/client/windows/unittests/testing.gyp @@ -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/',