summaryrefslogtreecommitdiffstats
path: root/media/mtp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2012-09-11 09:33:46 -0700
committerElliott Hughes <enh@google.com>2012-09-11 09:33:46 -0700
commite0e2e98674caa7f6285eda122ebabee40528374b (patch)
tree1f21090bc2f13718c000d558120d806851199bd5 /media/mtp
parentd81be6d670f0d89aa6048a82fbbff82c584e9922 (diff)
downloadframeworks_av-e0e2e98674caa7f6285eda122ebabee40528374b.zip
frameworks_av-e0e2e98674caa7f6285eda122ebabee40528374b.tar.gz
frameworks_av-e0e2e98674caa7f6285eda122ebabee40528374b.tar.bz2
Stop building the unused host libmtp static library.
This removes the need to support the bionic mktime_tz and localtime_tz extensions on glibc, which makes my life easier. Bug: 7012465 Change-Id: Ibfa187f2857dda7bd1536348e314a80abacb9d1e
Diffstat (limited to 'media/mtp')
-rw-r--r--media/mtp/Android.mk28
1 files changed, 0 insertions, 28 deletions
diff --git a/media/mtp/Android.mk b/media/mtp/Android.mk
index fc7fc4f..bee28d4 100644
--- a/media/mtp/Android.mk
+++ b/media/mtp/Android.mk
@@ -45,31 +45,3 @@ LOCAL_C_INCLUDES := bionic/libc/private
LOCAL_SHARED_LIBRARIES := libutils libcutils libusbhost libbinder
include $(BUILD_SHARED_LIBRARY)
-
-ifeq ($(HOST_OS),linux)
-
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES:= \
- MtpDataPacket.cpp \
- MtpDebug.cpp \
- MtpDevice.cpp \
- MtpEventPacket.cpp \
- MtpDeviceInfo.cpp \
- MtpObjectInfo.cpp \
- MtpPacket.cpp \
- MtpProperty.cpp \
- MtpRequestPacket.cpp \
- MtpResponsePacket.cpp \
- MtpStorageInfo.cpp \
- MtpStringBuffer.cpp \
- MtpStorage.cpp \
- MtpUtils.cpp \
-
-LOCAL_MODULE:= libmtp
-
-LOCAL_CFLAGS := -DMTP_HOST
-
-include $(BUILD_HOST_STATIC_LIBRARY)
-
-endif