The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2008 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | LOCAL_PATH := $(call my-dir) |
| 17 | include $(CLEAR_VARS) |
| 18 | |
Jean-Baptiste Queru | 85964c6 | 2010-01-05 16:27:27 -0800 | [diff] [blame] | 19 | LOCAL_MODULE_TAGS := optional |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 20 | |
Bjorn Bringert | deefe07 | 2010-10-08 16:32:54 +0100 | [diff] [blame] | 21 | LOCAL_STATIC_JAVA_LIBRARIES := guava \ |
Andy McFadden | 93e0bbb | 2011-07-06 15:18:22 -0700 | [diff] [blame] | 22 | android-common \ |
| 23 | calendar-common |
Fabrice Di Meglio | 25e5cde | 2010-03-17 16:04:00 -0700 | [diff] [blame] | 24 | |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 25 | LOCAL_SRC_FILES := $(call all-java-files-under,src) |
Jeff Hamilton | 25b0f0e | 2010-05-25 22:14:41 -0500 | [diff] [blame] | 26 | LOCAL_SRC_FILES += \ |
| 27 | src/com/android/providers/calendar/EventLogTags.logtags |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 28 | |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 29 | LOCAL_PACKAGE_NAME := CalendarProvider |
| 30 | |
Christopher Tate | 935d2d3 | 2013-05-10 14:11:46 -0700 | [diff] [blame] | 31 | LOCAL_PRIVILEGED_MODULE := true |
| 32 | |
Sebastien Hertz | 23af0ab | 2016-04-06 18:28:31 +0200 | [diff] [blame] | 33 | # The Jacoco tool analyzes code coverage when running unit tests on the |
Guang Zhu | 82e83a9 | 2010-07-29 10:50:01 -0700 | [diff] [blame] | 34 | # application. This configuration line selects which packages will be analyzed, |
| 35 | # leaving out code which is tested by other means (e.g. static libraries) that |
| 36 | # would dilute the coverage results. These options do not affect regular |
| 37 | # production builds. |
Sebastien Hertz | 23af0ab | 2016-04-06 18:28:31 +0200 | [diff] [blame] | 38 | LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.providers.calendar.* |
Guang Zhu | 82e83a9 | 2010-07-29 10:50:01 -0700 | [diff] [blame] | 39 | |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 40 | include $(BUILD_PACKAGE) |
| 41 | |
| 42 | # Use the following include to make our test apk. |
| 43 | include $(call all-makefiles-under,$(LOCAL_PATH)) |