blob: 8db8e4f287aafd0a7bfc49b0a4a4205c26373bc1 [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
Makoto Onuki28b6a0f2016-01-12 15:53:00 -080018
19LOCAL_INSTRUMENTATION_FOR := BlockedNumberProvider
20LOCAL_CERTIFICATE := shared
21
22LOCAL_PROGUARD_ENABLED := disabled
23
24include $(BUILD_PACKAGE)