aboutsummaryrefslogtreecommitdiff
path: root/Android.mk
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2014-10-01 11:30:55 +0100
committerNarayan Kamath <narayan@google.com>2014-10-02 09:50:25 +0000
commitfb716cce89ee080907bb5d43dfc84a657e4e5282 (patch)
tree1a9a568a15b4a2e7ac858cb94a6ccc7b8258d1fe /Android.mk
parenta5e918984692c683ec42bfc9cd33de96f3c6460b (diff)
downloadmessageformat-l-preview.tar.gz
- Updated to change 75130889. - Also remove support for the host library, which can no longer be built due to dependencies on android.content.* Change-Id: I6e619463b8fa2b4acd91bd2f53239602bf8714f7
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk17
1 files changed, 4 insertions, 13 deletions
diff --git a/Android.mk b/Android.mk
index 155ba3a..fe9b563 100644
--- a/Android.mk
+++ b/Android.mk
@@ -16,21 +16,12 @@ LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := messageformat
-LOCAL_SDK_VERSION := 4
-LOCAL_SRC_FILES := $(call all-java-files-under, src/)
+LOCAL_SRC_FILES := $(call all-java-files-under, java/)
+
include $(BUILD_STATIC_JAVA_LIBRARY)
include $(CLEAR_VARS)
LOCAL_MODULE := messageformat-tests
-LOCAL_SDK_VERSION := 4
-LOCAL_STATIC_JAVA_LIBRARIES := messageformat
-LOCAL_SRC_FILES := $(call all-java-files-under, tests/src/)
+LOCAL_STATIC_JAVA_LIBRARIES := messageformat junit-targetdex
+LOCAL_SRC_FILES := $(call all-java-files-under, javatests/)
include $(BUILD_STATIC_JAVA_LIBRARY)
-
-# Also build a host side library
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := messageformat_host
-LOCAL_SRC_FILES := $(call all-java-files-under, src/)
-
-include $(BUILD_HOST_JAVA_LIBRARY)