summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-04-02 13:43:56 -0700
committerBrian Carlstrom <bdc@google.com>2013-04-02 13:43:56 -0700
commitcad9b26a34c9068d98f4697ccfc1aefa02c8f5fd (patch)
treeeba2b0c867bfba681df339c5f0bde93383379dfe
parent820207557cd2d930286931ea1ba0e4bef1731ef5 (diff)
downloadnist-pkits-cad9b26a34c9068d98f4697ccfc1aefa02c8f5fd.tar.gz
nist-pkix-tests should only depend on core and core-junit, not frameworks
Change-Id: Ief7e29323684778306dcfcc3850bfa7772e94bbb
-rw-r--r--Android.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/Android.mk b/Android.mk
index 9923cce..0567baf 100644
--- a/Android.mk
+++ b/Android.mk
@@ -18,7 +18,9 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_JAVA_RESOURCE_DIRS := res
LOCAL_MODULE := nist-pkix-tests
-LOCAL_ADDITIONAL_DEPENDENCY := $(LOCAL_PATH)/Android.mk
+LOCAL_JAVA_LIBRARIES := core core-junit
+LOCAL_NO_STANDARD_LIBRARIES := true
+LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
include $(BUILD_STATIC_JAVA_LIBRARY)
include $(CLEAR_VARS)
@@ -26,5 +28,5 @@ LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_JAVA_RESOURCE_DIRS := res
LOCAL_MODULE := nist-pkix-tests-host
LOCAL_JAVA_LIBRARIES := junit
-LOCAL_ADDITIONAL_DEPENDENCY := $(LOCAL_PATH)/Android.mk
+LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
include $(BUILD_HOST_JAVA_LIBRARY)