1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4# We only want this apk build for tests. 5LOCAL_MODULE_TAGS := tests 6LOCAL_CERTIFICATE := shared 7 8LOCAL_STATIC_JAVA_LIBRARIES := android-support-test 9 10src_dirs := src \ 11 ../../ContactsCommon/TestCommon/src 12 13# Include all test java files. 14LOCAL_SRC_FILES := $(call all-java-files-under, $(src_dirs)) 15 16LOCAL_PACKAGE_NAME := ContactsTests 17 18LOCAL_INSTRUMENTATION_FOR := Contacts 19 20LOCAL_SDK_VERSION := current 21LOCAL_MIN_SDK_VERSION := 21 22 23include $(BUILD_PACKAGE) 24