summaryrefslogtreecommitdiffstats
path: root/third_party/libxml/using_libxml.scons
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/libxml/using_libxml.scons')
-rw-r--r--third_party/libxml/using_libxml.scons24
1 files changed, 0 insertions, 24 deletions
diff --git a/third_party/libxml/using_libxml.scons b/third_party/libxml/using_libxml.scons
deleted file mode 100644
index 709520f..0000000
--- a/third_party/libxml/using_libxml.scons
+++ /dev/null
@@ -1,24 +0,0 @@
-# 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")
-
-if env.WantSystemLib('libxml'):
- env.Append(LIBS = ['xml2'])
-else:
- env.Append(LIBS = ['libxml'])
-
-env.Append(
- CPPPATH = [
- '$LIBXML_DIR/include',
- '$LIBXML_DIR/DerivedSources/include',
- ],
- CPPDEFINES = [
- 'LIBXML_STATIC',
- ],
-)