Build android.test.base/legacy against SDK
android.test.legacy is now build against SDK, thus available to apps build with SDK. In doing so, android.test.mock.stubs had to be built with SDK (because it is used by android.test.legacy). However, this wasn't trivial. The problem was that some classes in test-mock implemented abstract methods of platform classes. Even though they are marked as @hide, doclava automatically emit them to the stub file because otherwise the class in the stub file does not implement some abstract methods from its parent class, which in turn makes the stub file non-compilable. This CL solves the problem by introducing an adapter class in between the class in test-mock and the class in the framework. The adapter class implements abstract methods which are @hide and having reference to types that aren't available to SDK. The abstract methods are removed from the original class. Then doclava does not emit the abstract methods. Also by @hide'ing the adapter classes, they are not compiled when building the stub library. Bug: 30188076 Bug: 73339598 Test: m -j android.test.base Test: m -j android.test.legacy Test: m -j android.test.mock.stubs are successful and do not show link-check warning Merged-In: I8e432950e693ee3c6f0240852e62da6133d31571 Change-Id: I8e432950e693ee3c6f0240852e62da6133d31571
This commit is contained in:
parent
d89c7790e1
commit
4cdec67417
@ -27,12 +27,8 @@ java_library {
|
||||
// Needs to be consistent with the repackaged version of this make target.
|
||||
java_version: "1.8",
|
||||
|
||||
no_framework_libs: true,
|
||||
sdk_version: "current",
|
||||
hostdex: true,
|
||||
libs: [
|
||||
"framework",
|
||||
],
|
||||
|
||||
}
|
||||
|
||||
// Build the legacy-test library
|
||||
@ -42,12 +38,9 @@ java_library {
|
||||
// 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",
|
||||
],
|
||||
sdk_version: "current",
|
||||
static_libs: ["android.test.base"],
|
||||
}
|
||||
|
||||
// Build the repackaged.android.test.base library
|
||||
@ -57,11 +50,8 @@ java_library {
|
||||
java_library_static {
|
||||
name: "repackaged.android.test.base",
|
||||
|
||||
sdk_version: "current",
|
||||
static_libs: ["android.test.base"],
|
||||
no_framework_libs: true,
|
||||
libs: [
|
||||
"framework",
|
||||
],
|
||||
|
||||
jarjar_rules: "jarjar-rules.txt",
|
||||
// Pin java_version until jarjar is certified to support later versions. http://b/72703434
|
||||
|
@ -26,10 +26,7 @@ include $(CLEAR_VARS)
|
||||
LOCAL_SRC_FILES := \
|
||||
$(call all-java-files-under, src)
|
||||
|
||||
LOCAL_JAVA_LIBRARIES := \
|
||||
core-oj \
|
||||
core-libart \
|
||||
framework \
|
||||
LOCAL_SDK_VERSION := current
|
||||
|
||||
LOCAL_MODULE_CLASS := JAVA_LIBRARIES
|
||||
LOCAL_DROIDDOC_SOURCE_PATH := $(LOCAL_PATH)/src
|
||||
|
@ -21,16 +21,38 @@ ifeq (,$(TARGET_BUILD_APPS)$(filter true,$(TARGET_BUILD_PDK)))
|
||||
|
||||
# Build the android.test.legacy library
|
||||
# =====================================
|
||||
# Built against the SDK so that it can be statically included in APKs
|
||||
# without breaking link type checks.
|
||||
#
|
||||
# This builds directly from the source rather than simply statically
|
||||
# including the android.test.base-minus-junit and
|
||||
# android.test.runner-minus-junit libraries because the latter library
|
||||
# cannot itself be built against the SDK. That is because it uses on
|
||||
# an internal method (setTestContext) on the AndroidTestCase class.
|
||||
# That class is provided by both the android.test.base-minus-junit and
|
||||
# the current SDK and as the latter is first on the classpath its
|
||||
# version is used. Unfortunately, it does not provide the internal
|
||||
# method and so compilation fails.
|
||||
#
|
||||
# Building from source avoids that because the compiler will use the
|
||||
# source version of AndroidTestCase instead of the one from the current
|
||||
# SDK.
|
||||
#
|
||||
# The use of the internal method does not prevent this from being
|
||||
# statically included because the class that provides the method is
|
||||
# also included in this library.
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := android.test.legacy
|
||||
|
||||
LOCAL_SRC_FILES := \
|
||||
$(call all-java-files-under, ../test-base/src/android) \
|
||||
$(call all-java-files-under, ../test-base/src/com) \
|
||||
$(call all-java-files-under, ../test-runner/src/android) \
|
||||
|
||||
LOCAL_SDK_VERSION := current
|
||||
|
||||
LOCAL_JAVA_LIBRARIES := junit
|
||||
LOCAL_STATIC_JAVA_LIBRARIES := \
|
||||
android.test.base-minus-junit \
|
||||
android.test.runner-minus-junit \
|
||||
LOCAL_JAVA_LIBRARIES := junit android.test.mock.stubs
|
||||
|
||||
include $(BUILD_STATIC_JAVA_LIBRARY)
|
||||
|
||||
|
@ -21,14 +21,14 @@ LOCAL_PATH:= $(call my-dir)
|
||||
# otherwise hidden methods could be visible.
|
||||
android_test_mock_source_files := \
|
||||
$(call all-java-files-under, src/android/test/mock) \
|
||||
$(call all-java-files-under, ../core/java) \
|
||||
$(call all-java-files-under, ../core/java/android)
|
||||
|
||||
# Generate the stub source files for android.test.mock.stubs
|
||||
# ==========================================================
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_SRC_FILES := $(android_test_mock_source_files)
|
||||
|
||||
LOCAL_JAVA_LIBRARIES := core-oj core-libart framework
|
||||
LOCAL_JAVA_LIBRARIES := core-oj core-libart framework conscrypt okhttp bouncycastle
|
||||
LOCAL_MODULE_CLASS := JAVA_LIBRARIES
|
||||
LOCAL_DROIDDOC_SOURCE_PATH := $(LOCAL_PATH)/src/android/test/mock
|
||||
|
||||
@ -39,6 +39,7 @@ ANDROID_TEST_MOCK_API_FILE := $(LOCAL_PATH)/api/android-test-mock-current.txt
|
||||
ANDROID_TEST_MOCK_REMOVED_API_FILE := $(LOCAL_PATH)/api/android-test-mock-removed.txt
|
||||
|
||||
LOCAL_DROIDDOC_OPTIONS:= \
|
||||
-hide 111 -hide 113 -hide 125 -hide 126 -hide 127 -hide 128 \
|
||||
-stubpackages android.test.mock \
|
||||
-stubs $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android.test.mock.stubs_intermediates/src \
|
||||
-nodocs \
|
||||
@ -67,6 +68,7 @@ LOCAL_SOURCE_FILES_ALL_GENERATED := true
|
||||
|
||||
# Make sure to run droiddoc first to generate the stub source files.
|
||||
LOCAL_ADDITIONAL_DEPENDENCIES := $(android_test_mock_gen_stamp)
|
||||
android_test_mock_gen_stamp :=
|
||||
|
||||
LOCAL_SDK_VERSION := current
|
||||
|
||||
|
@ -33,8 +33,8 @@ java_library {
|
||||
|
||||
// Build the android.test.runner-minus-junit library
|
||||
// =================================================
|
||||
// This is only intended for inclusion in the android.test.legacy and
|
||||
// legacy-android-test static libraries and must not be used elsewhere.
|
||||
// This is only intended for inclusion in the legacy-android-test static
|
||||
// library and must not be used elsewhere.
|
||||
java_library {
|
||||
name: "android.test.runner-minus-junit",
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user