summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duffin <paulduffin@google.com>2017-01-17 14:36:12 +0000
committerPaul Duffin <paulduffin@google.com>2017-01-17 20:37:35 +0000
commit2ffc4addb07f9b3bbb6ea14b93d34149eff62e6d (patch)
tree6836fe1d716aeb66f230267c87205a436024f241
parent68d03b23bb6e177ee988fa81099bd87fb12580e7 (diff)
downloadbase-2ffc4addb07f9b3bbb6ea14b93d34149eff62e6d.tar.gz
Add legacy-android-test target containing android.test classes
In preparation for removing junit classes from the Android API the legacy-test target will be removed from the TARGET_DEFAULT_JAVA_LIBRARIES. This change adds a legacy-android-test target, containing only the android.test classes, for use by any targets that depend on those classes. Bug: 30188076 Test: make checkbuild Change-Id: Ifc0a9a23d4ac3c78428bb9dde38e547e6978ba7e
-rw-r--r--legacy-test/Android.mk15
1 files changed, 14 insertions, 1 deletions
diff --git a/legacy-test/Android.mk b/legacy-test/Android.mk
index 5e72a0d541cb..0a814f39b637 100644
--- a/legacy-test/Android.mk
+++ b/legacy-test/Android.mk
@@ -18,7 +18,8 @@ LOCAL_PATH:= $(call my-dir)
# Build the legacy-test library
# =============================
-# This contains the junit.framework classes that were in Android API level 25.
+# This contains the junit.framework and android.test classes that were in
+# Android API level 25.
include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(call all-java-files-under, src)
@@ -28,6 +29,18 @@ LOCAL_JAVA_LIBRARIES := core-oj core-libart framework
include $(BUILD_JAVA_LIBRARY)
+# Build the legacy-android-test library
+# =============================
+# This contains the android.test classes that were in Android API level 25.
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src/android)
+LOCAL_MODULE := legacy-android-test
+LOCAL_NO_STANDARD_LIBRARIES := true
+LOCAL_JAVA_LIBRARIES := core-oj core-libart framework junit
+
+include $(BUILD_STATIC_JAVA_LIBRARY)
+
ifeq ($(HOST_OS),linux)
# Build the legacy-performance-test-hostdex library
# =================================================