summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYing Wang <wangying@google.com>2015-06-06 12:18:48 -0700
committerYing Wang <wangying@google.com>2015-06-06 13:14:13 -0700
commitf1ef7259741bdf99e2a5991bc12aa6cf4f551785 (patch)
treea4432a9e19fb546e64a31d1249bfc13258efb32d
parent85e997a91056d6ea19a834552faec22c9cd075f4 (diff)
downloadparameter-framework-f1ef7259741bdf99e2a5991bc12aa6cf4f551785.tar.gz
Fix Mac build.
It's an error to build .a without source file on Mac. These two empty static libraries aren't used anywhere. Bug: 21669400 Change-Id: I73e0899378256ddf802eb7a3aafdbe43559baefe
-rw-r--r--parameter/Android.mk33
-rw-r--r--xmlserializer/Android.mk17
2 files changed, 0 insertions, 50 deletions
diff --git a/parameter/Android.mk b/parameter/Android.mk
index 3e0068d..4ce29f1 100644
--- a/parameter/Android.mk
+++ b/parameter/Android.mk
@@ -189,36 +189,3 @@ LOCAL_LDLIBS += -ldl
LOCAL_CLANG := false
include $(BUILD_HOST_SHARED_LIBRARY)
-################################
-# Export includes for plugins (Target build)
-
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := $(common_module)_includes
-LOCAL_MODULE_OWNER := intel
-
-LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
-
-LOCAL_STATIC_LIBRARIES := \
- libxmlserializer \
- libpfw_utility \
- libxml2
-
-include $(BUILD_STATIC_LIBRARY)
-
-################################
-# Export includes for plugins (Host build)
-
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := $(common_module)_includes_host
-LOCAL_MODULE_OWNER := intel
-
-LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
-
-LOCAL_STATIC_LIBRARIES := \
- libxmlserializer_host \
- libpfw_utility_host \
- libxml2
-
-include $(BUILD_HOST_STATIC_LIBRARY)
diff --git a/xmlserializer/Android.mk b/xmlserializer/Android.mk
index 1308c70..eedf48b 100644
--- a/xmlserializer/Android.mk
+++ b/xmlserializer/Android.mk
@@ -103,20 +103,3 @@ LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
include $(BUILD_HOST_STATIC_LIBRARY)
-################################
-# Export includes for plugins (Target build)
-include $(CLEAR_VARS)
-LOCAL_MODULE := $(common_module)_includes
-LOCAL_MODULE_OWNER := intel
-LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
-LOCAL_STATIC_LIBRARIES := libxml2
-include $(BUILD_STATIC_LIBRARY)
-
-################################
-# Export includes for plugins (Host build)
-include $(CLEAR_VARS)
-LOCAL_MODULE := $(common_module)_includes
-LOCAL_MODULE_OWNER := intel
-LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
-LOCAL_STATIC_LIBRARIES := libxml2
-include $(BUILD_HOST_STATIC_LIBRARY)