summaryrefslogtreecommitdiff
path: root/test-base
diff options
context:
space:
mode:
Diffstat (limited to 'test-base')
-rw-r--r--test-base/Android.bp20
1 files changed, 20 insertions, 0 deletions
diff --git a/test-base/Android.bp b/test-base/Android.bp
index a42dc5a10ec9..ccf57b00a379 100644
--- a/test-base/Android.bp
+++ b/test-base/Android.bp
@@ -64,6 +64,26 @@ java_library_static {
jarjar_rules: "jarjar-rules.txt",
}
+// Build the android.test.base-minus-junit library
+// ===============================================
+// This contains the android.test classes from android.test.base plus
+// the com.android.internal.util.Predicate[s] classes. This is only
+// intended for inclusion in the android.test.legacy static library and
+// must not be used elsewhere.
+java_library_static {
+ name: "android.test.base-minus-junit",
+
+ srcs: [
+ "src/android/**/*.java",
+ "src/com/**/*.java",
+ ],
+
+ sdk_version: "current",
+ libs: [
+ "junit",
+ ],
+}
+
// Build the legacy-android-test library
// =====================================
// This contains the android.test classes that were in Android API level 25,