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 /jingle/jingle.gyp | |
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 'jingle/jingle.gyp')
-rw-r--r-- | jingle/jingle.gyp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/jingle/jingle.gyp b/jingle/jingle.gyp index c796210..8db3011 100644 --- a/jingle/jingle.gyp +++ b/jingle/jingle.gyp @@ -10,7 +10,7 @@ # A library of various utils for integration with libjingle. { 'target_name': 'jingle_glue', - 'type': '<(library)', + 'type': 'static_library', 'sources': [ 'glue/channel_socket_adapter.cc', 'glue/channel_socket_adapter.h', @@ -37,7 +37,7 @@ # its own library. { 'target_name': 'notifier', - 'type': '<(library)', + 'type': 'static_library', 'sources': [ 'notifier/base/chrome_async_socket.cc', 'notifier/base/chrome_async_socket.h', @@ -119,7 +119,7 @@ }, { 'target_name': 'notifier_test_util', - 'type': '<(library)', + 'type': 'static_library', 'sources': [ 'notifier/base/fake_base_task.cc', 'notifier/base/fake_base_task.h', @@ -132,7 +132,7 @@ }, { 'target_name': 'jingle_glue_test_util', - 'type': '<(library)', + 'type': 'static_library', 'sources': [ 'glue/fake_network_manager.cc', 'glue/fake_network_manager.h', |