1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4# We only want this apk build for tests.
5LOCAL_MODULE_TAGS := tests
6
7LOCAL_STATIC_JAVA_LIBRARIES := \
8    mockito-target-minus-junit4 \
9    android-support-test \
10    legacy-android-test
11
12LOCAL_JAVA_LIBRARIES := android.test.runner
13
14# Only compile source java files in this apk.
15LOCAL_SRC_FILES := $(call all-java-files-under, src)
16
17LOCAL_PACKAGE_NAME := BlockedNumberProviderTest
18LOCAL_COMPATIBILITY_SUITE := device-tests
19
20LOCAL_INSTRUMENTATION_FOR := BlockedNumberProvider
21LOCAL_CERTIFICATE := shared
22
23LOCAL_PROGUARD_ENABLED := disabled
24
25include $(BUILD_PACKAGE)
26