summaryrefslogtreecommitdiffstats
path: root/webkit/webkit.gyp
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-08 12:55:49 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-08 12:55:49 +0000
commit653bd5f03ef74274adbec816df10cdfd046b6eea (patch)
treec96f3829422d2fec66cb3a5bc00995bbba914110 /webkit/webkit.gyp
parent74484851bb8f9f1954014a08c81305e74f9b0bda (diff)
downloadchromium_src-653bd5f03ef74274adbec816df10cdfd046b6eea.zip
chromium_src-653bd5f03ef74274adbec816df10cdfd046b6eea.tar.gz
chromium_src-653bd5f03ef74274adbec816df10cdfd046b6eea.tar.bz2
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
Diffstat (limited to 'webkit/webkit.gyp')
-rw-r--r--webkit/webkit.gyp10
1 files changed, 5 insertions, 5 deletions
diff --git a/webkit/webkit.gyp b/webkit/webkit.gyp
index 6727436..2f6f12b 100644
--- a/webkit/webkit.gyp
+++ b/webkit/webkit.gyp
@@ -200,7 +200,7 @@
},
{
'target_name': 'wtf',
- 'type': 'static_library',
+ 'type': '<(library)',
'dependencies': [
'config',
'../third_party/icu38/icu38.gyp:icui18n',
@@ -362,7 +362,7 @@
},
{
'target_name': 'pcre',
- 'type': 'static_library',
+ 'type': '<(library)',
'dependencies': [
'config',
'wtf',
@@ -404,7 +404,7 @@
},
{
'target_name': 'webcore',
- 'type': 'static_library',
+ 'type': '<(library)',
'dependencies': [
'config',
'pcre',
@@ -4090,7 +4090,7 @@
},
{
'target_name': 'webkit',
- 'type': 'static_library',
+ 'type': '<(library)',
'dependencies': [
'webcore',
],
@@ -4216,7 +4216,7 @@
},
{
'target_name': 'glue',
- 'type': 'static_library',
+ 'type': '<(library)',
'dependencies': [
'webcore',
'webkit',