1LOCAL_PATH := $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_MODULE_TAGS := tests 5 6LOCAL_SDK_VERSION := current 7 8LOCAL_SRC_FILES := $(call all-subdir-java-files) 9LOCAL_JAVA_LIBRARIES := android.test.runner 10LOCAL_STATIC_JAVA_LIBRARIES := ub-uiautomator \ 11 launcher-helper-lib \ 12 permission-helper \ 13 package-helper 14LOCAL_PACKAGE_NAME := PermissionFunctionalTests 15LOCAL_CERTIFICATE := platform 16 17LOCAL_COMPATIBILITY_SUITE := device-tests 18 19include $(BUILD_PACKAGE) 20