blob: 93a3570888acb8e1b541a307601b4d87a4845d0d [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
15
16LOCAL_INSTRUMENTATION_FOR := CallLogBackup
17LOCAL_CERTIFICATE := shared
18
19LOCAL_PROGUARD_ENABLED := disabled
20
21include $(BUILD_PACKAGE)