aboutsummaryrefslogtreecommitdiffstats
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
commitede38fe9b9f93888e6e41afc7abb09525f44da95 (patch)
tree4ef437786285869a2ae70dc0d411ba475304e40a /Android.mk
parentfbaaef999ba563838ebd00874ed8a1c01fbf286d (diff)
downloadexternal_protobuf-ede38fe9b9f93888e6e41afc7abb09525f44da95.zip
external_protobuf-ede38fe9b9f93888e6e41afc7abb09525f44da95.tar.gz
external_protobuf-ede38fe9b9f93888e6e41afc7abb09525f44da95.tar.bz2
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 9285744..fb2d964 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)