diff options
author | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-12 23:23:52 +0000 |
---|---|---|
committer | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-12 23:23:52 +0000 |
commit | 2c22c19660813c683eae115604c282c1f4044e6d (patch) | |
tree | 9e4b8b2c85830f66f77f977bc39ceefd006eac50 /third_party | |
parent | 4f2ad3f5ab8550a404d4c70c29938c19110b3ecb (diff) | |
download | chromium_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')
-rw-r--r-- | third_party/bzip2/using_bzip2.scons | 2 | ||||
-rw-r--r-- | third_party/libxml/using_libxml.scons | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/third_party/bzip2/using_bzip2.scons b/third_party/bzip2/using_bzip2.scons index a7706f5..b41bca2 100644 --- a/third_party/bzip2/using_bzip2.scons +++ b/third_party/bzip2/using_bzip2.scons @@ -10,6 +10,6 @@ Import("env") env.Append( LIBS = [ - 'bzip2', + env['BZIP2_LIB'], ], ) 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'], ], ) |