1 LOCAL_PATH:= $(call my-dir) 2 include $(CLEAR_VARS) 3 4 LOCAL_MODULE_TAGS := tests 5 6 7 # Include all test java files. 8 LOCAL_SRC_FILES := $(call all-java-files-under, src) 9 10 LOCAL_PACKAGE_NAME := TVJankTests 11 12 LOCAL_STATIC_JAVA_LIBRARIES := \ 13 android-support-test \ 14 tv-test-common \ 15 ub-janktesthelper \ 16 ub-uiautomator \ 17 18 LOCAL_INSTRUMENTATION_FOR := LiveTv 19 20 LOCAL_SDK_VERSION := current 21 LOCAL_MIN_SDK_VERSION := 23 # M 22 23 include $(BUILD_PACKAGE) 24