Santos Cordon | 339272c | 2015-01-12 17:23:51 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE_TAGS := optional |
| 5 | |
| 6 | # Only compile source java files in this apk. |
| 7 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 8 | |
Sebastien Hertz | 1fac97f | 2016-04-06 18:29:00 +0200 | [diff] [blame] | 9 | # The Jacoco tool analyzes code coverage when running unit tests on the |
Santos Cordon | 339272c | 2015-01-12 17:23:51 -0800 | [diff] [blame] | 10 | # 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 Hertz | 1fac97f | 2016-04-06 18:29:00 +0200 | [diff] [blame] | 14 | LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.calllogbackup.* |
Santos Cordon | 339272c | 2015-01-12 17:23:51 -0800 | [diff] [blame] | 15 | |
Santos Cordon | 61cc930 | 2015-03-06 12:40:43 -0800 | [diff] [blame] | 16 | LOCAL_PACKAGE_NAME := CallLogBackup |
Anton Hansson | 08f71f5 | 2018-02-22 18:07:04 +0000 | [diff] [blame^] | 17 | LOCAL_PRIVATE_PLATFORM_APIS := true |
Santos Cordon | 339272c | 2015-01-12 17:23:51 -0800 | [diff] [blame] | 18 | LOCAL_CERTIFICATE := shared |
| 19 | LOCAL_PRIVILEGED_MODULE := true |
| 20 | |
| 21 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
| 22 | |
| 23 | include $(BUILD_PACKAGE) |
| 24 | |
| 25 | # Use the following include to make our test apk. |
| 26 | include $(call all-makefiles-under,$(LOCAL_PATH)) |