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 /chrome/chrome_tests.gypi | |
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 'chrome/chrome_tests.gypi')
-rw-r--r-- | chrome/chrome_tests.gypi | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/chrome_tests.gypi b/chrome/chrome_tests.gypi index 933d313..6a8992c 100644 --- a/chrome/chrome_tests.gypi +++ b/chrome/chrome_tests.gypi @@ -21,7 +21,7 @@ # This target contains mocks and test utilities that don't belong in # production libraries but are used by more than one test executable. 'target_name': 'test_support_common', - 'type': '<(library)', + 'type': 'static_library', 'dependencies': [ 'browser', 'common', @@ -223,7 +223,7 @@ }, { 'target_name': 'test_support_ui', - 'type': '<(library)', + 'type': 'static_library', 'dependencies': [ 'test_support_common', 'chrome_resources', @@ -272,7 +272,7 @@ }, { 'target_name': 'test_support_sync', - 'type': '<(library)', + 'type': 'static_library', 'dependencies': [ '../base/base.gyp:base', '../testing/gmock.gyp:gmock', @@ -297,7 +297,7 @@ }, { 'target_name': 'test_support_syncapi', - 'type': '<(library)', + 'type': 'static_library', 'dependencies': [ '../base/base.gyp:base', 'syncapi', @@ -318,7 +318,7 @@ }, { 'target_name': 'test_support_sync_notifier', - 'type': '<(library)', + 'type': 'static_library', 'dependencies': [ '../testing/gmock.gyp:gmock', 'sync_notifier', @@ -333,7 +333,7 @@ }, { 'target_name': 'test_support_unit', - 'type': '<(library)', + 'type': 'static_library', 'dependencies': [ 'test_support_common', 'chrome_resources', @@ -770,7 +770,7 @@ # The documention of the protocol implemented is at: # http://code.google.com/p/selenium/wiki/JsonWireProtocol 'target_name': 'chromedriver_lib', - 'type': '<(library)', + 'type': 'static_library', 'dependencies': [ 'browser', 'chrome', |