summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Napier <napier@google.com>2010-07-28 12:08:18 -0700
committerBill Napier <napier@google.com>2010-07-28 12:08:18 -0700
commit8e937939899d5fe3a6864c7ecb9bb8632678a7c7 (patch)
tree20b6ca0ed08874c6239a91cd41e60594b6017133
parente7e2bf2c7405f53f2bd9bac8b11e16f5ab1e44f6 (diff)
downloadandroid_external_jsr305-8e937939899d5fe3a6864c7ecb9bb8632678a7c7.tar.gz
android_external_jsr305-8e937939899d5fe3a6864c7ecb9bb8632678a7c7.tar.bz2
android_external_jsr305-8e937939899d5fe3a6864c7ecb9bb8632678a7c7.zip
Change-Id: I3a373c076c7075ae0d0caadce379c65d674542c9
-rw-r--r--Android.mk9
1 files changed, 9 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index a7a0ac8..03d1c78 100644
--- a/Android.mk
+++ b/Android.mk
@@ -23,3 +23,12 @@ include $(BUILD_STATIC_JAVA_LIBRARY)
# Include this library in the build server's output directory
$(call dist-for-goals, droid, $(LOCAL_BUILT_MODULE):jsr305.jar)
+
+# Also build a host side library
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := $(call all-java-files-under, ri/src/main/java)
+
+LOCAL_MODULE := jsr305lib
+
+include $(BUILD_HOST_JAVA_LIBRARY)