summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Balfanz <balfanz@google.com>2010-02-01 19:34:12 -0800
committerDirk Balfanz <balfanz@google.com>2010-02-01 19:34:12 -0800
commitdfa4254ca189a7a128ae76b558d60cbe3139f563 (patch)
treea053bf504ded6ce34e9b30e69ecfa52737109722
parentb852fcf48a8909164d7f323dd02a35d2a8056a61 (diff)
downloadoauth-dfa4254ca189a7a128ae76b558d60cbe3139f563.tar.gz
adding Android.mk file to oauth library
-rw-r--r--core/src/main/java/Android.mk14
1 files changed, 14 insertions, 0 deletions
diff --git a/core/src/main/java/Android.mk b/core/src/main/java/Android.mk
new file mode 100644
index 0000000..c76a3f9
--- /dev/null
+++ b/core/src/main/java/Android.mk
@@ -0,0 +1,14 @@
+LOCAL_PATH := $(call my-dir)
+include $(CLEAR_VARS)
+
+# This will build the client static library for the Google Services Framework
+LOCAL_MODULE := oauth
+
+# Includes all the java files, and explicitly declares any aidl files
+LOCAL_SRC_FILES := \
+ $(call all-java-files-under, net)
+
+#LOCAL_SDK_VERSION := current
+
+# Build the actual static library
+include $(BUILD_STATIC_JAVA_LIBRARY)