summaryrefslogtreecommitdiff
path: root/test-base
diff options
context:
space:
mode:
authorPaul Duffin <paulduffin@google.com>2018-01-30 13:01:30 +0000
committerPaul Duffin <paulduffin@google.com>2018-01-30 13:01:30 +0000
commit898e7de6c71e00e11f299b67bd62d4af5fd12ca2 (patch)
treea6cac56968b50d44b3926d4a37752e9b5a201681 /test-base
parent1116291cecc0de5b426fa6307c1b13f7d90259e1 (diff)
Create test-legacy/ for android.test.legacy target
The android.test.legacy (and legacy-android-test) target depends on code from both test-base/ and test-runner/ and do not really belong in either folder. Having a separate folder will also provide a convenient place for the artifacts needed to publish android.test.legacy to maven.google.com. Bug: 30188076 Test: make checkbuild Change-Id: Ied54c24694b3167fcf9075a3157e92ec53b8f636
Diffstat (limited to 'test-base')
-rw-r--r--test-base/Android.bp25
1 files changed, 0 insertions, 25 deletions
diff --git a/test-base/Android.bp b/test-base/Android.bp
index ccf57b00a379..62fed61da276 100644
--- a/test-base/Android.bp
+++ b/test-base/Android.bp
@@ -83,28 +83,3 @@ java_library_static {
"junit",
],
}
-
-// Build the legacy-android-test library
-// =====================================
-// This contains the android.test classes that were in Android API level 25,
-// including those from android.test.runner.
-// Also contains the com.android.internal.util.Predicate[s] classes.
-java_library_static {
- name: "legacy-android-test",
-
- srcs: [
- "src/android/**/*.java",
- "src/com/**/*.java",
- ],
-
- static_libs: [
- "android.test.runner-minus-junit",
- "android.test.mock",
- ],
-
- no_framework_libs: true,
- libs: [
- "framework",
- "junit",
- ],
-}