diff options
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/libjpeg/using_libjpeg.scons | 36 | ||||
-rw-r--r-- | third_party/libxml/using_libxml.scons | 44 | ||||
-rw-r--r-- | third_party/libxslt/using_libxslt.scons | 36 |
3 files changed, 116 insertions, 0 deletions
diff --git a/third_party/libjpeg/using_libjpeg.scons b/third_party/libjpeg/using_libjpeg.scons new file mode 100644 index 0000000..d1e6cf2 --- /dev/null +++ b/third_party/libjpeg/using_libjpeg.scons @@ -0,0 +1,36 @@ +# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +__doc__ = """ +Settings for other components using the libjpeg library. +""" + +Import("env") + +env.Append( + CPPPATH = [ + '$LIBJPEG_DIR', + ], + LIBS = [ + 'libjpeg', + ], +) +# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +__doc__ = """ +Settings for other components using the libjpeg library. +""" + +Import("env") + +env.Append( + CPPPATH = [ + '$LIBJPEG_DIR', + ], + LIBS = [ + 'libjpeg', + ], +) diff --git a/third_party/libxml/using_libxml.scons b/third_party/libxml/using_libxml.scons new file mode 100644 index 0000000..7c7d7da --- /dev/null +++ b/third_party/libxml/using_libxml.scons @@ -0,0 +1,44 @@ +# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +__doc__ = """ +Settings for other components using the libxml library. +""" + +Import("env") + +env.Append( + CPPPATH = [ + '$LIBXML_DIR/include', + '$LIBXML_DIR/DerivedSources/include', + ], + CPPDEFINES = [ + 'LIBXML_STATIC', + ], + LIBS = [ + 'libxml', + ], +) +# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +__doc__ = """ +Settings for other components using the libxml library. +""" + +Import("env") + +env.Append( + CPPPATH = [ + '$LIBXML_DIR/include', + '$LIBXML_DIR/DerivedSources/include', + ], + CPPDEFINES = [ + 'LIBXML_STATIC', + ], + LIBS = [ + 'libxml', + ], +) diff --git a/third_party/libxslt/using_libxslt.scons b/third_party/libxslt/using_libxslt.scons new file mode 100644 index 0000000..d8f636f --- /dev/null +++ b/third_party/libxslt/using_libxslt.scons @@ -0,0 +1,36 @@ +# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +__doc__ = """ +Settings for other components using the libxslt library. +""" + +Import("env") + +env.Append( + CPPPATH = [ + '$LIBXSLT_DIR', + ], + LIBS = [ + 'libxslt', + ], +) +# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +__doc__ = """ +Settings for other components using the libxslt library. +""" + +Import("env") + +env.Append( + CPPPATH = [ + '$LIBXSLT_DIR', + ], + LIBS = [ + 'libxslt', + ], +) |