diff options
author | mmoss@google.com <mmoss@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-10 17:31:45 +0000 |
---|---|---|
committer | mmoss@google.com <mmoss@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-10 17:31:45 +0000 |
commit | 003be53b23e2d6dff8cf65759ca68d0140224468 (patch) | |
tree | c94355bc2dd653d7fa34214a4f6d805c01e4d657 /build/linux | |
parent | 7513961de3f2571b5e034413304a7d466cb17e6b (diff) | |
download | chromium_src-003be53b23e2d6dff8cf65759ca68d0140224468.zip chromium_src-003be53b23e2d6dff8cf65759ca68d0140224468.tar.gz chromium_src-003be53b23e2d6dff8cf65759ca68d0140224468.tar.bz2 |
Make sure the 'use_system_*' variables are actually visible in the relevant gyp files.
Retrying r34195, this time without libxslt, since we don't want to use the
system version of that if we're not also using system libxml (merged from
http://codereview.chromium.org/481011).
BUG=29738
Review URL: http://codereview.chromium.org/486012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34255 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/linux')
-rw-r--r-- | build/linux/system.gyp | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/build/linux/system.gyp b/build/linux/system.gyp index a707343..c51d0a7 100644 --- a/build/linux/system.gyp +++ b/build/linux/system.gyp @@ -13,11 +13,19 @@ 'pkg-config': 'pkg-config' }, }], + [ 'OS=="linux"', { + 'variables': { + # We use our own copy of libssl, although we still need to link against + # the rest of NSS. + 'use_system_ssl%': 0, + }, + }, { # OS!="linux" + 'variables': { + 'use_system_ssl%': 1, + }, + }], ], - 'variables': { - 'use_system_ssl%': 1, - }, 'targets': [ { |