Home | History | Annotate | Download | only in CallLogProvider
      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 
      9 # The Jacoco tool analyzes code coverage when running unit tests on the
     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.
     14 LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.calllogbackup.*
     15 
     16 LOCAL_PACKAGE_NAME := CallLogBackup
     17 LOCAL_CERTIFICATE := shared
     18 LOCAL_PRIVILEGED_MODULE := true
     19 
     20 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
     21 
     22 include $(BUILD_PACKAGE)
     23 
     24 # Use the following include to make our test apk.
     25 include $(call all-makefiles-under,$(LOCAL_PATH))
     26