From 653bd5f03ef74274adbec816df10cdfd046b6eea Mon Sep 17 00:00:00 2001 From: "sgk@google.com" Date: Wed, 8 Apr 2009 12:55:49 +0000 Subject: Basic underpinnings of the gyp equivalent of the Linux SHARED=1 build: parameterize the 'type' setting of the various library targets, with a default of 'static_library'. (Hat tip to Craig Schlenter.) Review URL: http://codereview.chromium.org/62127 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13345 0039d316-1c4b-4281-b951-d872f2087c98 --- base/base.gyp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'base') diff --git a/base/base.gyp b/base/base.gyp index 325ab65..8ebad3e 100644 --- a/base/base.gyp +++ b/base/base.gyp @@ -12,7 +12,7 @@ 'targets': [ { 'target_name': 'base', - 'type': 'static_library', + 'type': '<(library)', 'dependencies': [ '../third_party/icu38/icu38.gyp:icui18n', '../third_party/icu38/icu38.gyp:icuuc', @@ -452,7 +452,7 @@ }, { 'target_name': 'base_gfx', - 'type': 'static_library', + 'type': '<(library)', 'msvs_guid': 'A508ADD3-CECE-4E0F-8448-2F5E454DF551', 'sources': [ 'gfx/gdi_util.cc', @@ -646,7 +646,7 @@ }, { 'target_name': 'test_support_base', - 'type': 'static_library', + 'type': '<(library)', 'dependencies': [ 'base', '../testing/gtest.gyp:gtest', -- cgit v1.1