diff options
author | Colin Cross <ccross@android.com> | 2017-12-07 13:11:06 -0800 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2017-12-08 21:01:53 +0000 |
commit | 2b7d71c7f8028741c2200bfeba8913b7f4f55cde (patch) | |
tree | 43f9394367779b2f9cd32dcb5f8da61c8f619f7d | |
parent | c22e7735c31b711f8bf598c07fc872baba9af0dd (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
-rw-r--r-- | test-base/Android.bp | 88 | ||||
-rw-r--r-- | test-base/Android.mk | 62 | ||||
-rw-r--r-- | test-mock/Android.bp | 39 | ||||
-rw-r--r-- | test-mock/Android.mk | 26 | ||||
l--------- | test-mock/jarjar-rules.txt | 1 | ||||
-rw-r--r-- | test-runner/Android.bp | 40 | ||||
-rw-r--r-- | test-runner/Android.mk | 36 | ||||
l--------- | test-runner/jarjar-rules.txt | 1 |
8 files changed, 169 insertions, 124 deletions
diff --git a/test-base/Android.bp b/test-base/Android.bp new file mode 100644 index 000000000000..a3fd3452aaef --- /dev/null +++ b/test-base/Android.bp @@ -0,0 +1,88 @@ +// +// Copyright (C) 2016 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.base library +// =================================== +// This contains the junit.framework and android.test classes that were in +// Android API level 25 excluding those from android.test.runner. +// Also contains the com.android.internal.util.Predicate[s] classes. +java_library { + name: "android.test.base", + + srcs: ["src/**/*.java"], + + no_framework_libs: true, + libs: [ + "framework", + ], + +} + +// Build the legacy-test library +// ============================= +// This contains the junit.framework and android.test classes that were in +// Android API level 25 excluding those from android.test.runner. +// Also contains the com.android.internal.util.Predicate[s] classes. +java_library { + name: "legacy-test", + static_libs: ["android.test.base"], + + no_framework_libs: true, + libs: [ + "framework", + ], +} + +// Build the repackaged.android.test.base library +// ============================================== +// This contains repackaged versions of the classes from legacy-test. +java_library_static { + name: "repackaged.android.test.base", + + static_libs: ["android.test.base"], + + no_framework_libs: true, + libs: [ + "framework", + ], + + jarjar_rules: "jarjar-rules.txt", +} + +// 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", + "android.test.mock", + ], + + no_framework_libs: true, + libs: [ + "framework", + "junit", + ], +} diff --git a/test-base/Android.mk b/test-base/Android.mk index 03bdcf237873..5e5d0401dd3c 100644 --- a/test-base/Android.mk +++ b/test-base/Android.mk @@ -16,50 +16,6 @@ LOCAL_PATH:= $(call my-dir) -# Build the android.test.base library -# =================================== -# This contains the junit.framework and android.test classes that were in -# Android API level 25 excluding those from android.test.runner. -# Also contains the com.android.internal.util.Predicate[s] classes. -include $(CLEAR_VARS) - -LOCAL_SRC_FILES := $(call all-java-files-under, src) - -LOCAL_MODULE := android.test.base -LOCAL_NO_STANDARD_LIBRARIES := true -LOCAL_JAVA_LIBRARIES := core-oj core-libart framework - -include $(BUILD_JAVA_LIBRARY) - -# Build the legacy-test library -# ============================= -# This contains the junit.framework and android.test classes that were in -# Android API level 25 excluding those from android.test.runner. -# Also contains the com.android.internal.util.Predicate[s] classes. -include $(CLEAR_VARS) - -LOCAL_SRC_FILES := $(call all-java-files-under, src) - -LOCAL_MODULE := legacy-test -LOCAL_NO_STANDARD_LIBRARIES := true -LOCAL_JAVA_LIBRARIES := core-oj core-libart framework - -include $(BUILD_JAVA_LIBRARY) - -# Build the repackaged.android.test.base library -# ============================================== -# This contains repackaged versions of the classes from legacy-test. -include $(CLEAR_VARS) - -LOCAL_SRC_FILES := $(call all-java-files-under, src) - -LOCAL_MODULE := repackaged.android.test.base -LOCAL_NO_STANDARD_LIBRARIES := true -LOCAL_JAVA_LIBRARIES := core-oj core-libart framework -LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt - -include $(BUILD_STATIC_JAVA_LIBRARY) - # For unbundled build we'll use the prebuilt jar from prebuilts/sdk. ifeq (,$(TARGET_BUILD_APPS)$(filter true,$(TARGET_BUILD_PDK))) @@ -156,24 +112,6 @@ update-android-test-base-api: $(ANDROID_TEST_BASE_OUTPUT_API_FILE) | $(ACP) endif # not TARGET_BUILD_APPS not TARGET_BUILD_PDK=true -# 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. -include $(CLEAR_VARS) - -LOCAL_SRC_FILES := \ - $(call all-java-files-under, src/android) \ - $(call all-java-files-under, ../test-runner/src/android) \ - $(call all-java-files-under, ../test-mock/src/android) \ - $(call all-java-files-under, src/com) -LOCAL_MODULE := legacy-android-test -LOCAL_NO_STANDARD_LIBRARIES := true -LOCAL_JAVA_LIBRARIES := core-oj core-libart framework junit - -include $(BUILD_STATIC_JAVA_LIBRARY) - # Build the legacy.test.stubs library # =================================== include $(CLEAR_VARS) diff --git a/test-mock/Android.bp b/test-mock/Android.bp new file mode 100644 index 000000000000..8eddec48611b --- /dev/null +++ b/test-mock/Android.bp @@ -0,0 +1,39 @@ +// +// 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.mock library +// =================================== +java_library { + name: "android.test.mock", + + srcs: ["src/**/*.java"], + + no_framework_libs: true, + libs: [ + "framework", + "legacy-test", + ], +} + +// Build the repackaged.android.test.mock library +// ============================================== +java_library_static { + name: "repackaged.android.test.mock", + + static_libs: ["android.test.mock"], + + jarjar_rules: "jarjar-rules.txt", +} diff --git a/test-mock/Android.mk b/test-mock/Android.mk index 2c079555877b..a761a070fa26 100644 --- a/test-mock/Android.mk +++ b/test-mock/Android.mk @@ -18,32 +18,6 @@ LOCAL_PATH:= $(call my-dir) android_test_mock_source_files := $(call all-java-files-under, src/android/test/mock) -# Build the repackaged.android.test.mock library -# ============================================== -include $(CLEAR_VARS) - -LOCAL_SRC_FILES := $(call all-java-files-under, src) - -LOCAL_JAVA_LIBRARIES := core-oj core-libart framework - -LOCAL_JARJAR_RULES := $(LOCAL_PATH)/../test-base/jarjar-rules.txt - -LOCAL_MODULE:= repackaged.android.test.mock - -include $(BUILD_STATIC_JAVA_LIBRARY) - -# Build the android.test.mock library -# =================================== -include $(CLEAR_VARS) - -LOCAL_SRC_FILES := $(call all-java-files-under, src) - -LOCAL_JAVA_LIBRARIES := core-oj core-libart framework - -LOCAL_MODULE:= android.test.mock - -include $(BUILD_JAVA_LIBRARY) - # For unbundled build we'll use the prebuilt jar from prebuilts/sdk. ifeq (,$(TARGET_BUILD_APPS)$(filter true,$(TARGET_BUILD_PDK))) diff --git a/test-mock/jarjar-rules.txt b/test-mock/jarjar-rules.txt new file mode 120000 index 000000000000..f6f79139d511 --- /dev/null +++ b/test-mock/jarjar-rules.txt @@ -0,0 +1 @@ +../test-base/jarjar-rules.txt
\ No newline at end of file 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 87fe83127e2c..67f1354d52bc 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 \ - android.test.base \ - 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 \ - android.test.base \ - android.test.mock \ - -LOCAL_JARJAR_RULES := $(LOCAL_PATH)/../test-base/jarjar-rules.txt - -LOCAL_MODULE:= repackaged.android.test.runner - -include $(BUILD_STATIC_JAVA_LIBRARY) - # For unbundled build we'll use the prebuilt jar from prebuilts/sdk. ifeq (,$(TARGET_BUILD_APPS)$(filter true,$(TARGET_BUILD_PDK))) diff --git a/test-runner/jarjar-rules.txt b/test-runner/jarjar-rules.txt new file mode 120000 index 000000000000..f6f79139d511 --- /dev/null +++ b/test-runner/jarjar-rules.txt @@ -0,0 +1 @@ +../test-base/jarjar-rules.txt
\ No newline at end of file |