summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2008-10-21 07:00:00 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2008-10-21 07:00:00 -0700
commita390cbfd25a5f3b2f002df725b7580bc78bd9edf (patch)
tree66b59c168d57fba8c198079da3609b3d5b976dad /Android.mk
downloadandroid_packages_apps_Calendar-a390cbfd25a5f3b2f002df725b7580bc78bd9edf.tar.gz
android_packages_apps_Calendar-a390cbfd25a5f3b2f002df725b7580bc78bd9edf.tar.bz2
android_packages_apps_Calendar-a390cbfd25a5f3b2f002df725b7580bc78bd9edf.zip
Initial Contribution
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk17
1 files changed, 17 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 00000000..06ac1038
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,17 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE_TAGS := user
+
+LOCAL_SRC_FILES := $(call all-subdir-java-files)
+
+# TODO: Remove dependency of application on the test runner (android.test.runner)
+# library.
+LOCAL_JAVA_LIBRARIES := android.test.runner
+
+LOCAL_PACKAGE_NAME := Calendar
+
+include $(BUILD_PACKAGE)
+
+# Use the following include to make our test apk.
+include $(call all-makefiles-under,$(LOCAL_PATH))