summaryrefslogtreecommitdiffstats
path: root/xmlserializer
diff options
context:
space:
mode:
authorpafonsoX <philippex.afonso@intel.com>2014-09-01 18:26:22 +0200
committerDavid Wagner <david.wagner@intel.com>2014-11-03 14:25:06 +0100
commitcef5bbc708acd7a8653302f02646279ee3913d61 (patch)
tree709be879cd04cd1543a2c5a13c128b09ca2e4cfe /xmlserializer
parent61e221838cf44e1dfd767d82c5d899f8a55d1330 (diff)
downloadexternal_parameter-framework-cef5bbc708acd7a8653302f02646279ee3913d61.zip
external_parameter-framework-cef5bbc708acd7a8653302f02646279ee3913d61.tar.gz
external_parameter-framework-cef5bbc708acd7a8653302f02646279ee3913d61.tar.bz2
Audio: Remove the hack to buid a libxml2 with schemas
BZ: 218524 The "Schemas" feature is enabled in Android-L, so there is no need for this out-of-tree compilation anymore. So this patch deletes its compilation in parameter-framework project. Change-Id: I111afa3e12fa80c2871bae475d550bc49c4440cc Signed-off-by: pafonsoX <philippex.afonso@intel.com> Signed-off-by: David Wagner <david.wagner@intel.com>
Diffstat (limited to 'xmlserializer')
-rw-r--r--xmlserializer/Android.mk68
1 files changed, 1 insertions, 67 deletions
diff --git a/xmlserializer/Android.mk b/xmlserializer/Android.mk
index f974a2c..769acf8 100644
--- a/xmlserializer/Android.mk
+++ b/xmlserializer/Android.mk
@@ -95,16 +95,10 @@ LOCAL_MODULE_TAGS := $(common_module_tags)
LOCAL_CFLAGS := $(common_cflags)
-# We must enforce this flag, otherwise schemas are never used.
-# This is due to the fact that libxml2-schemas.a is compiled
-# with those features enabled, but the xmlversion.h does
-# not include those defines.
-LOCAL_CFLAGS += -DLIBXML_SCHEMAS_ENABLED
-
LOCAL_C_INCLUDES += $(common_c_includes)
LOCAL_SHARED_LIBRARIES := $(common_shared_libraries)-host
-LOCAL_STATIC_LIBRARIES := libxml2-schemas
+LOCAL_STATIC_LIBRARIES := libxml2
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
@@ -127,63 +121,3 @@ LOCAL_MODULE_OWNER := intel
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
LOCAL_STATIC_LIBRARIES := libxml2
include $(BUILD_HOST_STATIC_LIBRARY)
-
-#
-# libxml2-schemas
-#
-LOCAL_PATH := external/libxml2
-include $(CLEAR_VARS)
-LOCAL_SRC_FILES := \
- SAX.c \
- entities.c \
- encoding.c \
- error.c \
- parserInternals.c \
- parser.c \
- tree.c \
- hash.c \
- list.c \
- xmlIO.c \
- xmlmemory.c \
- uri.c \
- valid.c \
- xlink.c \
- HTMLparser.c \
- HTMLtree.c \
- debugXML.c \
- xpath.c \
- xpointer.c \
- xinclude.c \
- nanohttp.c \
- nanoftp.c \
- DOCBparser.c \
- catalog.c \
- globals.c \
- threads.c \
- c14n.c \
- xmlstring.c \
- xmlregexp.c \
- xmlschemas.c \
- xmlschemastypes.c \
- xmlunicode.c \
- xmlreader.c \
- relaxng.c \
- dict.c \
- SAX2.c \
- legacy.c \
- chvalid.c \
- pattern.c \
- xmlsave.c \
- xmlmodule.c \
- xmlwriter.c \
- schematron.c
-
-LOCAL_C_INCLUDES := $(LOCAL_PATH)/include external/icu/icu4c/source/common
-LOCAL_CFLAGS := \
- -DLIBXML_EXPR_ENABLED \
- -DLIBXML_REGEXP_ENABLED \
- -DLIBXML_PATTERN_ENABLED \
- -DLIBXML_SCHEMAS_ENABLED \
- -DLIBXML_UNICODE_ENABLED
-LOCAL_MODULE:= libxml2-schemas
-include $(BUILD_HOST_STATIC_LIBRARY)