From 2c22c19660813c683eae115604c282c1f4044e6d Mon Sep 17 00:00:00 2001 From: "evanm@google.com" Date: Wed, 12 Nov 2008 23:23:52 +0000 Subject: 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 . git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5320 0039d316-1c4b-4281-b951-d872f2087c98 --- third_party/libxml/using_libxml.scons | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'third_party/libxml') 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'], ], ) -- cgit v1.1