blob: 8741795dd315dd5a59d68cca53f44357420118cc [file] [log] [blame]
Santos Cordon61cc9302015-03-06 12:40:43 -08001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4# We only want this apk build for tests.
5LOCAL_MODULE_TAGS := tests
6
Paul Duffin87a47552017-12-08 00:02:43 +00007LOCAL_STATIC_JAVA_LIBRARIES := mockito-target
Santos Cordon61cc9302015-03-06 12:40:43 -08008
Paul Duffin87a47552017-12-08 00:02:43 +00009LOCAL_JAVA_LIBRARIES := android.test.runner android.test.base
Santos Cordon61cc9302015-03-06 12:40:43 -080010
11# Only compile source java files in this apk.
12LOCAL_SRC_FILES := $(call all-java-files-under, src)
13
14LOCAL_PACKAGE_NAME := CallLogBackupTests
Anton Hansson08f71f52018-02-22 18:07:04 +000015LOCAL_PRIVATE_PLATFORM_APIS := true
Santos Cordon61cc9302015-03-06 12:40:43 -080016
17LOCAL_INSTRUMENTATION_FOR := CallLogBackup
18LOCAL_CERTIFICATE := shared
19
20LOCAL_PROGUARD_ENABLED := disabled
21
22include $(BUILD_PACKAGE)