summaryrefslogtreecommitdiffstats
path: root/third_party/libxml
diff options
context:
space:
mode:
authorevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-12 23:23:52 +0000
committerevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-12 23:23:52 +0000
commit2c22c19660813c683eae115604c282c1f4044e6d (patch)
tree9e4b8b2c85830f66f77f977bc39ceefd006eac50 /third_party/libxml
parent4f2ad3f5ab8550a404d4c70c29938c19110b3ecb (diff)
downloadchromium_src-2c22c19660813c683eae115604c282c1f4044e6d.zip
chromium_src-2c22c19660813c683eae115604c282c1f4044e6d.tar.gz
chromium_src-2c22c19660813c683eae115604c282c1f4044e6d.tar.bz2
Allow chromium to be built with some system libs by introducing
a variable called SYSTEM_LIBS, consisting of a comma-separated list of system libraries. So far, bzip2, libpng, libjpeg, libxml, libxslt, lzma_sdk, zlib, hunspell, sqlite, libevent are recognized. BUG=4321 Review URL: http://codereview.chromium.org/10626 Patch from Fabien Tassin <fta@sofaraway.org>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5320 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/libxml')
-rw-r--r--third_party/libxml/using_libxml.scons4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/libxml/using_libxml.scons b/third_party/libxml/using_libxml.scons
index 7c7d7da..4a5c1329 100644
--- a/third_party/libxml/using_libxml.scons
+++ b/third_party/libxml/using_libxml.scons
@@ -17,7 +17,7 @@ env.Append(
'LIBXML_STATIC',
],
LIBS = [
- 'libxml',
+ env['XML_LIB'],
],
)
# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
@@ -39,6 +39,6 @@ env.Append(
'LIBXML_STATIC',
],
LIBS = [
- 'libxml',
+ env['XML_LIB'],
],
)