summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorChris Wren <cwren@android.com>2012-08-16 17:33:34 -0400
committerChris Wren <cwren@android.com>2012-08-23 09:49:39 -0400
commitc8ca07eb52a54efe327d024dc542e0a7f8849bfb (patch)
tree0b708e6bea60854beaf9f4184d857b8ca2bff7e4 /Android.mk
parent7a809b2eda2d9cf8439202e03a092e850bfde1dc (diff)
downloadandroid_packages_screensavers_PhotoTable-c8ca07eb52a54efe327d024dc542e0a7f8849bfb.tar.gz
android_packages_screensavers_PhotoTable-c8ca07eb52a54efe327d024dc542e0a7f8849bfb.tar.bz2
android_packages_screensavers_PhotoTable-c8ca07eb52a54efe327d024dc542e0a7f8849bfb.zip
Example Dream: photos
An example screensaver that shows local photos. Change-Id: I2997c4f8ab35777d96df31a46f2f55044e3114c2
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk19
1 files changed, 19 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..40ee416
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,19 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE_TAGS := optional
+
+# Only compile source java files in this apk.
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+LOCAL_STATIC_JAVA_LIBRARIES := android-support-v13 \
+ google-common
+
+LOCAL_PACKAGE_NAME := PhotoTable
+
+LOCAL_SDK_VERSION := current
+
+include $(BUILD_PACKAGE)
+
+# Use the following include to make our test apk.
+include $(call all-makefiles-under,$(LOCAL_PATH))