summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2017-01-19 14:13:49 -0800
committerColin Cross <ccross@android.com>2017-01-19 14:21:40 -0800
commitfd03583209682fd6f0b161365725d83ecc9453d4 (patch)
tree401b629acc043199393955e772c7bade1aede933
parent2226d7ee4919702d4825bd359ff2be6cb9c7b78b (diff)
downloadjcommander-fd03583209682fd6f0b161365725d83ecc9453d4.tar.gz
Use BUILD_HOST_STATIC_DALVIK_JAVA_LIBRARY for jcommander-hostdexandroid-o-preview-1android-n-mr2-preview-2o-preview
BUILD_HOST_STATIC_DALVIK_JAVA_LIBRARY must be used for libraries that will be linked with LOCAL_STATIC_JAVA_LIBRARIES. Test: m -j java Change-Id: Ib0182420a17177d87ee3b694a429268bbcd01d17
-rw-r--r--Android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index 141db39..e052034 100644
--- a/Android.mk
+++ b/Android.mk
@@ -46,6 +46,6 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(jcommander_android_src_files)
LOCAL_MODULE := jcommander-hostdex
LOCAL_MODULE_TAGS := optional
-include $(BUILD_HOST_DALVIK_JAVA_LIBRARY)
+include $(BUILD_HOST_DALVIK_STATIC_JAVA_LIBRARY)
# TODO: also add the tests once we have testng working.