blob: e7b15faf69e086716d73d658139f18ee5773b296 [file] [log] [blame]
Makoto Onuki28b6a0f2016-01-12 15:53:00 -08001LOCAL_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 := \
Guang Zhu40579672016-08-24 10:49:24 -07008 mockito-target-minus-junit4 \
Paul Duffin10260bd2017-01-17 14:49:42 +00009 android-support-test \
10 legacy-android-test
Makoto Onuki28b6a0f2016-01-12 15:53:00 -080011
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
Abhijith Shastry9f7cfe72016-01-15 11:09:21 -080017LOCAL_PACKAGE_NAME := BlockedNumberProviderTest
Simran Basi05a57d02017-03-15 15:13:55 -070018LOCAL_COMPATIBILITY_SUITE := device-tests
Makoto Onuki28b6a0f2016-01-12 15:53:00 -080019
20LOCAL_INSTRUMENTATION_FOR := BlockedNumberProvider
21LOCAL_CERTIFICATE := shared
22
23LOCAL_PROGUARD_ENABLED := disabled
24
25include $(BUILD_PACKAGE)