1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4# Include all test java files. 5LOCAL_SRC_FILES := \ 6 $(call all-java-files-under, src) \ 7 $(call all-Iaidl-files-under, src) 8 9LOCAL_STATIC_JAVA_LIBRARIES := \ 10 android-support-annotations \ 11 androidx.test.runner \ 12 tv-guava-android-jar \ 13 mockito-robolectric-prebuilt \ 14 tv-lib-truth \ 15 ub-uiautomator \ 16 17# Link tv-common as shared library to avoid the problem of initialization of the constants 18LOCAL_JAVA_LIBRARIES := tv-common 19 20LOCAL_INSTRUMENTATION_FOR := LiveTv 21LOCAL_MODULE := tv-tuner-testing 22LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0 23LOCAL_LICENSE_CONDITIONS := notice 24LOCAL_MODULE_TAGS := optional 25LOCAL_SDK_VERSION := system_current 26 27LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res 28LOCAL_AIDL_INCLUDES += $(LOCAL_PATH)/src 29 30include $(BUILD_STATIC_JAVA_LIBRARY) 31