blob: 0191d874b01ee33d6f2c2a23628daddfbb6fee51 [file] [log] [blame]
Santos Cordon339272c2015-01-12 17:23:51 -08001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE_TAGS := optional
5
6# Only compile source java files in this apk.
7LOCAL_SRC_FILES := $(call all-java-files-under, src)
8
Sebastien Hertz1fac97f2016-04-06 18:29:00 +02009# The Jacoco tool analyzes code coverage when running unit tests on the
Santos Cordon339272c2015-01-12 17:23:51 -080010# application. This configuration line selects which packages will be analyzed,
11# leaving out code which is tested by other means (e.g. static libraries) that
12# would dilute the coverage results. These options do not affect regular
13# production builds.
Sebastien Hertz1fac97f2016-04-06 18:29:00 +020014LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.calllogbackup.*
Santos Cordon339272c2015-01-12 17:23:51 -080015
Santos Cordon61cc9302015-03-06 12:40:43 -080016LOCAL_PACKAGE_NAME := CallLogBackup
Anton Hansson08f71f52018-02-22 18:07:04 +000017LOCAL_PRIVATE_PLATFORM_APIS := true
Santos Cordon339272c2015-01-12 17:23:51 -080018LOCAL_CERTIFICATE := shared
19LOCAL_PRIVILEGED_MODULE := true
20
21LOCAL_PROGUARD_FLAG_FILES := proguard.flags
22
23include $(BUILD_PACKAGE)
24
25# Use the following include to make our test apk.
26include $(call all-makefiles-under,$(LOCAL_PATH))