blob: 4a83dbb1f889b6849ab93c8628e20f4cc0fc66b1 [file] [log] [blame]
The Android Open Source Projectb558dec2008-10-21 07:00:00 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE_TAGS := user
5
6LOCAL_SRC_FILES := $(call all-subdir-java-files)
7
8# TODO: Remove dependency of application on the test runner (android.test.runner)
9# library.
10LOCAL_JAVA_LIBRARIES := ext android.test.runner
11
12# We depend on googlelogin-client also, but that is already being included by google-framework
13LOCAL_STATIC_JAVA_LIBRARIES := google-framework
14
15LOCAL_PACKAGE_NAME := CalendarProvider
16
17include $(BUILD_PACKAGE)
18
19# Use the following include to make our test apk.
20include $(call all-makefiles-under,$(LOCAL_PATH))