summaryrefslogtreecommitdiff
path: root/test-runner
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2017-12-07 13:11:06 -0800
committerColin Cross <ccross@android.com>2017-12-12 23:24:40 +0000
commitfc7ba9e61f0991c74a161502da4432da45ce384e (patch)
tree3752cad98fb5958c90e3a330aa802226a37161b0 /test-runner
parentc16130898432e5622e60fd7aeb05a9b7db8f9550 (diff)
Convert legacy-test, test-runner, and test-mock to Android.bp
See build/soong/README.md for more information. Test: m checkbuild Change-Id: I110f752d2fa94c44581f20d4f308d9d429da0517 Merged-In: I110f752d2fa94c44581f20d4f308d9d429da0517 (cherry-picked from commit 2b7d71c7f8028741c2200bfeba8913b7f4f55cde)
Diffstat (limited to 'test-runner')
-rw-r--r--test-runner/Android.bp40
-rw-r--r--test-runner/Android.mk36
l---------test-runner/jarjar-rules.txt1
3 files changed, 41 insertions, 36 deletions
diff --git a/test-runner/Android.bp b/test-runner/Android.bp
new file mode 100644
index 000000000000..104ae8236368
--- /dev/null
+++ b/test-runner/Android.bp
@@ -0,0 +1,40 @@
+//
+// Copyright (C) 2008 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+
+// Build the android.test.runner library
+// =====================================
+java_library {
+ name: "android.test.runner",
+
+ srcs: ["src/**/*.java"],
+
+ no_framework_libs: true,
+ libs: [
+ "framework",
+ "legacy-test",
+ "android.test.mock",
+ ],
+}
+
+// Build the repackaged.android.test.runner library
+// ================================================
+java_library_static {
+ name: "repackaged.android.test.runner",
+
+ static_libs: ["android.test.runner"],
+
+ jarjar_rules: "jarjar-rules.txt",
+}
diff --git a/test-runner/Android.mk b/test-runner/Android.mk
index 9161a6ea9e67..6cf2d5646ffb 100644
--- a/test-runner/Android.mk
+++ b/test-runner/Android.mk
@@ -16,42 +16,6 @@
LOCAL_PATH:= $(call my-dir)
-# Build the android.test.runner library
-# =====================================
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES := $(call all-java-files-under, src)
-
-LOCAL_JAVA_LIBRARIES := \
- core-oj \
- core-libart \
- framework \
- legacy-test \
- android.test.mock \
-
-LOCAL_MODULE:= android.test.runner
-
-include $(BUILD_JAVA_LIBRARY)
-
-# Build the repackaged.android.test.runner library
-# ================================================
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES := $(call all-java-files-under, src)
-
-LOCAL_JAVA_LIBRARIES := \
- core-oj \
- core-libart \
- framework \
- legacy-test \
- android.test.mock \
-
-LOCAL_JARJAR_RULES := $(LOCAL_PATH)/../legacy-test/jarjar-rules.txt
-
-LOCAL_MODULE:= repackaged.android.test.runner
-
-include $(BUILD_STATIC_JAVA_LIBRARY)
-
# Generate the stub source files for android.test.runner.stubs
# ============================================================
include $(CLEAR_VARS)
diff --git a/test-runner/jarjar-rules.txt b/test-runner/jarjar-rules.txt
new file mode 120000
index 000000000000..b0e4beaf5a4c
--- /dev/null
+++ b/test-runner/jarjar-rules.txt
@@ -0,0 +1 @@
+../legacy-test/jarjar-rules.txt \ No newline at end of file