1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.calendar.* 5 6# We only want this apk build for tests. 7LOCAL_MODULE_TAGS := tests 8 9LOCAL_STATIC_JAVA_LIBRARIES := android.test.runner 10 11# Include all test java files. 12LOCAL_SRC_FILES := $(call all-java-files-under, src) 13 14LOCAL_PACKAGE_NAME := CalendarTests 15 16LOCAL_INSTRUMENTATION_FOR := Calendar 17 18# unbundled 19LOCAL_STATIC_JAVA_LIBRARIES := android-common 20LOCAL_SDK_VERSION := 16 21 22include $(BUILD_PACKAGE) 23