blob: 0edf0c9b9cac3b6100ad7ab612ec284b16371ba0 [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 Duffin85d64f52017-01-17 14:49:42 +00007LOCAL_STATIC_JAVA_LIBRARIES := mockito-target legacy-android-test
Santos Cordon61cc9302015-03-06 12:40:43 -08008
9LOCAL_JAVA_LIBRARIES := android.test.runner
10
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)