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 /ui | |
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 'ui')
-rw-r--r-- | ui/gfx/compositor/compositor.gyp | 2 | ||||
-rw-r--r-- | ui/gfx/gl/gl.gyp | 2 | ||||
-rw-r--r-- | ui/gfx/surface/surface.gyp | 2 | ||||
-rw-r--r-- | ui/ui_base.gypi | 2 | ||||
-rw-r--r-- | ui/ui_gfx.gypi | 2 | ||||
-rw-r--r-- | ui/ui_views.gypi | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/ui/gfx/compositor/compositor.gyp b/ui/gfx/compositor/compositor.gyp index 8a6f66a..bc81e04 100644 --- a/ui/gfx/compositor/compositor.gyp +++ b/ui/gfx/compositor/compositor.gyp @@ -19,7 +19,7 @@ 'targets': [ { 'target_name': 'compositor', - 'type': '<(library)', + 'type': 'static_library', 'msvs_guid': '21CEE0E3-6F4E-4F01-B8C9-F7751CC21AA9', 'dependencies': [ '<(DEPTH)/base/base.gyp:base', diff --git a/ui/gfx/gl/gl.gyp b/ui/gfx/gl/gl.gyp index da520bd..8af8563 100644 --- a/ui/gfx/gl/gl.gyp +++ b/ui/gfx/gl/gl.gyp @@ -34,7 +34,7 @@ 'targets': [ { 'target_name': 'gl', - 'type': '<(library)', + 'type': 'static_library', 'dependencies': [ '<(DEPTH)/app/app.gyp:app_base', '<(DEPTH)/base/base.gyp:base', diff --git a/ui/gfx/surface/surface.gyp b/ui/gfx/surface/surface.gyp index 19aa1ba..4eeb024 100644 --- a/ui/gfx/surface/surface.gyp +++ b/ui/gfx/surface/surface.gyp @@ -36,7 +36,7 @@ 'targets': [ { 'target_name': 'surface', - 'type': '<(library)', + 'type': 'static_library', 'msvs_guid': '6C99567D-6F02-43B5-BB35-D8E3F8D0D6D2', 'dependencies': [ '<(DEPTH)/base/base.gyp:base', diff --git a/ui/ui_base.gypi b/ui/ui_base.gypi index 1f20b43..9facff0 100644 --- a/ui/ui_base.gypi +++ b/ui/ui_base.gypi @@ -6,7 +6,7 @@ 'targets': [ { 'target_name': 'ui_base', - 'type': '<(library)', + 'type': 'static_library', 'dependencies': [ '../base/base.gyp:base', '../skia/skia.gyp:skia', diff --git a/ui/ui_gfx.gypi b/ui/ui_gfx.gypi index 04c0d88..8c5672d 100644 --- a/ui/ui_gfx.gypi +++ b/ui/ui_gfx.gypi @@ -38,7 +38,7 @@ }, { 'target_name': 'ui_gfx', - 'type': '<(library)', + 'type': 'static_library', 'msvs_guid': '13A8D36C-0467-4B4E-BAA3-FD69C45F076A', 'dependencies': [ '../base/base.gyp:base', diff --git a/ui/ui_views.gypi b/ui/ui_views.gypi index b291bd4..77cb335 100644 --- a/ui/ui_views.gypi +++ b/ui/ui_views.gypi @@ -6,7 +6,7 @@ 'targets': [ { 'target_name': 'v2', - 'type': '<(library)', + 'type': 'static_library', 'msvs_guid': '70760ECA-4D8B-47A4-ACDC-D3E7F25F0543', 'dependencies': [ '../skia/skia.gyp:skia', |