22 lines
656 B
Makefile
22 lines
656 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
##############################################
|
|
# Execute Robolectric robolectric tests
|
|
##############################################
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := Run_robolectric_robolectric_tests
|
|
LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
|
|
LOCAL_LICENSE_CONDITIONS := notice
|
|
LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../LICENSE
|
|
|
|
test_source_directory := $(LOCAL_PATH)/src/test/java
|
|
|
|
test_resources_directory := $(LOCAL_PATH)/src/test/resources
|
|
|
|
test_runtime_libraries := \
|
|
Robolectric_robolectric_tests \
|
|
robolectric-host-android_all
|
|
|
|
include external/robolectric-shadows/run_robolectric_module_tests.mk
|