aboutsummaryrefslogtreecommitdiff
path: root/Android.mk
diff options
context:
space:
mode:
authorWink Saville <wink@google.com>2010-05-28 11:49:52 -0700
committerWink Saville <wink@google.com>2010-05-28 11:49:52 -0700
commite5566f8673927026d8a55c4246f45272d2814c84 (patch)
treefb5672f007d4b780ea9aa027f0d7012e54614e8a /Android.mk
parent3df2fda0e432ee4d1692d6b399521e4581c686fb (diff)
downloadprotobuf-e5566f8673927026d8a55c4246f45272d2814c84.tar.gz
protobuf-e5566f8673927026d8a55c4246f45272d2814c84.tar.bz2
protobuf-e5566f8673927026d8a55c4246f45272d2814c84.zip
Add support for Java micro protobuf's to protobuf-2.2.0a.
See README.android for additional information. Change-Id: I9c5ef2eec484cc87e32841f39060f8f27b8e8472
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk10
1 files changed, 8 insertions, 2 deletions
diff --git a/Android.mk b/Android.mk
index 92857446..fb2d964b 100644
--- a/Android.mk
+++ b/Android.mk
@@ -1,4 +1,4 @@
-# Copyright (C) 2010 The Android Open Source Project
+# Copyright (C) 2009 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -11,8 +11,14 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+#
+#
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
-# TODO: Add code to build the javamicro library
+LOCAL_SRC_FILES := $(call all-java-files-under, java/src/main/java/com/google/protobuf/micro)
+
+LOCAL_MODULE := com.google.protobuf.micro
+
+include $(BUILD_STATIC_JAVA_LIBRARY)