From 5a5473381495625fdf691f93be48497f4edf003d Mon Sep 17 00:00:00 2001 From: "evan@chromium.org" Date: Thu, 19 May 2011 23:18:53 +0000 Subject: 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 --- chrome/chrome_common.gypi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chrome/chrome_common.gypi') diff --git a/chrome/chrome_common.gypi b/chrome/chrome_common.gypi index a5d80c0..458168d 100644 --- a/chrome/chrome_common.gypi +++ b/chrome/chrome_common.gypi @@ -85,7 +85,7 @@ 'targets': [ { 'target_name': 'common', - 'type': '<(library)', + 'type': 'static_library', 'msvs_guid': '899F1280-3441-4D1F-BA04-CCD6208D9146', 'variables': { 'chrome_common_target': 1, @@ -350,7 +350,7 @@ }, { 'target_name': 'common_net', - 'type': '<(library)', + 'type': 'static_library', 'sources': [ 'common/net/http_return.h', 'common/net/net_resource_provider.cc', @@ -473,7 +473,7 @@ 'targets': [ { 'target_name': 'common_nacl_win64', - 'type': '<(library)', + 'type': 'static_library', 'msvs_guid': '3AB5C5E9-470C-419B-A0AE-C7381FB632FA', 'variables': { 'chrome_common_target': 1, -- cgit v1.1