1339272c8696803e168c2c12e0658afee1da9a902Santos CordonLOCAL_PATH:= $(call my-dir)
2339272c8696803e168c2c12e0658afee1da9a902Santos Cordoninclude $(CLEAR_VARS)
3339272c8696803e168c2c12e0658afee1da9a902Santos Cordon
4339272c8696803e168c2c12e0658afee1da9a902Santos CordonLOCAL_MODULE_TAGS := optional
5339272c8696803e168c2c12e0658afee1da9a902Santos Cordon
6339272c8696803e168c2c12e0658afee1da9a902Santos Cordon# Only compile source java files in this apk.
7339272c8696803e168c2c12e0658afee1da9a902Santos CordonLOCAL_SRC_FILES := $(call all-java-files-under, src)
8339272c8696803e168c2c12e0658afee1da9a902Santos Cordon
91fac97f13fcda949bae32569eb2333c5b4161b61Sebastien Hertz# The Jacoco tool analyzes code coverage when running unit tests on the
10339272c8696803e168c2c12e0658afee1da9a902Santos Cordon# application. This configuration line selects which packages will be analyzed,
11339272c8696803e168c2c12e0658afee1da9a902Santos Cordon# leaving out code which is tested by other means (e.g. static libraries) that
12339272c8696803e168c2c12e0658afee1da9a902Santos Cordon# would dilute the coverage results. These options do not affect regular
13339272c8696803e168c2c12e0658afee1da9a902Santos Cordon# production builds.
141fac97f13fcda949bae32569eb2333c5b4161b61Sebastien HertzLOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.calllogbackup.*
15339272c8696803e168c2c12e0658afee1da9a902Santos Cordon
1661cc930dd36a8d9efa02195fa7f55bbe87209788Santos CordonLOCAL_PACKAGE_NAME := CallLogBackup
17339272c8696803e168c2c12e0658afee1da9a902Santos CordonLOCAL_CERTIFICATE := shared
18339272c8696803e168c2c12e0658afee1da9a902Santos CordonLOCAL_PRIVILEGED_MODULE := true
19339272c8696803e168c2c12e0658afee1da9a902Santos Cordon
20339272c8696803e168c2c12e0658afee1da9a902Santos CordonLOCAL_PROGUARD_FLAG_FILES := proguard.flags
21339272c8696803e168c2c12e0658afee1da9a902Santos Cordon
22339272c8696803e168c2c12e0658afee1da9a902Santos Cordoninclude $(BUILD_PACKAGE)
23339272c8696803e168c2c12e0658afee1da9a902Santos Cordon
24339272c8696803e168c2c12e0658afee1da9a902Santos Cordon# Use the following include to make our test apk.
25339272c8696803e168c2c12e0658afee1da9a902Santos Cordoninclude $(call all-makefiles-under,$(LOCAL_PATH))
26