diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-08 12:55:49 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-08 12:55:49 +0000 |
commit | 653bd5f03ef74274adbec816df10cdfd046b6eea (patch) | |
tree | c96f3829422d2fec66cb3a5bc00995bbba914110 /net/net.gyp | |
parent | 74484851bb8f9f1954014a08c81305e74f9b0bda (diff) | |
download | chromium_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 'net/net.gyp')
-rw-r--r-- | net/net.gyp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/net.gyp b/net/net.gyp index cfd17f6..f1a4805 100644 --- a/net/net.gyp +++ b/net/net.gyp @@ -12,7 +12,7 @@ 'targets': [ { 'target_name': 'net', - 'type': 'static_library', + 'type': '<(library)', 'dependencies': [ '../base/base.gyp:base', '../build/temp_gyp/googleurl.gyp:googleurl', @@ -537,7 +537,7 @@ }, { 'target_name': 'net_test_support', - 'type': 'static_library', + 'type': '<(library)', 'dependencies': [ 'net', '../base/base.gyp:base', |