See go/jetpack-test-android-migration Test: make checkbuild Change-Id: I77ed585671ba19f2d0f6c862cd17b24db954c615
23 lines
528 B
Makefile
23 lines
528 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
# We only want this apk build for tests.
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
# Include all test java files.
|
|
LOCAL_SRC_FILES := \
|
|
$(call all-java-files-under, src)
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
androidx.test.rules \
|
|
frameworks-base-testutils \
|
|
mockito-target-minus-junit4
|
|
|
|
LOCAL_JAVA_LIBRARIES := android.test.runner
|
|
LOCAL_PACKAGE_NAME := FrameworksCorePackageManagerTests
|
|
LOCAL_PRIVATE_PLATFORM_APIS := true
|
|
|
|
LOCAL_CERTIFICATE := platform
|
|
|
|
include $(BUILD_PACKAGE)
|