diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-19 23:18:53 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-19 23:18:53 +0000 |
commit | 5a5473381495625fdf691f93be48497f4edf003d (patch) | |
tree | 71210a4a0d933a71bcaa0c25db7930af891cf1d8 /breakpad | |
parent | ab0367457117bc9f408be8730074befa57f93e51 (diff) | |
download | chromium_src-5a5473381495625fdf691f93be48497f4edf003d.zip chromium_src-5a5473381495625fdf691f93be48497f4edf003d.tar.gz chromium_src-5a5473381495625fdf691f93be48497f4edf003d.tar.bz2 |
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
Diffstat (limited to 'breakpad')
-rw-r--r-- | breakpad/breakpad.gyp | 8 | ||||
-rw-r--r-- | breakpad/breakpad_handler.gypi | 6 | ||||
-rw-r--r-- | breakpad/breakpad_sender.gypi | 4 |
3 files changed, 9 insertions, 9 deletions
diff --git a/breakpad/breakpad.gyp b/breakpad/breakpad.gyp index 4713f4d..fb01fa7 100644 --- a/breakpad/breakpad.gyp +++ b/breakpad/breakpad.gyp @@ -25,7 +25,7 @@ 'targets': [ { 'target_name': 'breakpad_utilities', - 'type': '<(library)', + 'type': 'static_library', 'sources': [ 'src/common/convert_UTF.c', 'src/client/mac/handler/breakpad_nlist_64.cc', @@ -174,7 +174,7 @@ }, { 'target_name': 'breakpad', - 'type': '<(library)', + 'type': 'static_library', 'dependencies': [ 'breakpad_utilities', 'crash_inspector', @@ -283,7 +283,7 @@ 'targets': [ { 'target_name': 'breakpad_client', - 'type': '<(library)', + 'type': 'static_library', 'sources': [ 'src/client/linux/crash_generation/crash_generation_client.cc', @@ -338,7 +338,7 @@ { # Breakpad r693 uses some files from src/processor in unit tests. 'target_name': 'breakpad_processor_support', - 'type': '<(library)', + 'type': 'static_library', 'sources': [ 'src/processor/basic_code_modules.cc', 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, }, diff --git a/breakpad/breakpad_sender.gypi b/breakpad/breakpad_sender.gypi index a6d4664..b50bddc 100644 --- a/breakpad/breakpad_sender.gypi +++ b/breakpad/breakpad_sender.gypi @@ -26,7 +26,7 @@ 'targets': [ { 'target_name': 'breakpad_sender', - 'type': '<(library)', + 'type': 'static_library', 'msvs_guid': '9946A048-043B-4F8F-9E07-9297B204714C', 'variables': { 'breakpad_sender_target': 1, @@ -41,7 +41,7 @@ }, { 'target_name': 'breakpad_sender_win64', - 'type': '<(library)', + 'type': 'static_library', 'msvs_guid': '237AEB58-9D74-41EF-9D49-A6ECE24EA8BC', 'variables': { 'breakpad_sender_target': 1, |