Merge "Remove static implementations of libtinyxml" am: bd3c8f83c2 am: c1b9f4cb12 am: 366a573817
am: 119ea69917

Change-Id: I4ea53aef1f9d94a88c31a841f41122da199cfdc8
diff --git a/Android.mk b/Android.mk
index 6a93c0d..b3967a5 100644
--- a/Android.mk
+++ b/Android.mk
@@ -5,6 +5,8 @@
 # Add -DTIXML_USE_STL to CFLAGS to use STL.
 #
 
+LOCAL_PATH := $(call my-dir)
+
 commonSources:= \
 	tinyxml.cpp \
 	tinyxmlparser.cpp \
@@ -17,37 +19,6 @@
         -Wno-logical-op-parentheses \
         -Werror
 
-# For the host
-# =====================================================
-LOCAL_PATH:= $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES:= \
-	$(commonSources)
-
-LOCAL_MODULE:= libtinyxml
-
-LOCAL_CFLAGS+= $(TOOL_CFLAGS) $(commonFlags)
-LOCAL_LDFLAGS:= $(TOOL_LDFLAGS) -lstdc++ -lc
-
-LOCAL_MULTILIB := both
-
-include $(BUILD_HOST_STATIC_LIBRARY)
-
-
-# For the device (static)
-# =====================================================
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES:= \
-	$(commonSources)
-
-LOCAL_MODULE:= libtinyxml
-
-LOCAL_CFLAGS+= $(commonFlags)
-
-include $(BUILD_STATIC_LIBRARY)
-
 
 # For the device
 # =====================================================