diff options
author | Wink Saville <wink@google.com> | 2010-05-28 11:49:52 -0700 |
---|---|---|
committer | Wink Saville <wink@google.com> | 2010-05-28 11:49:52 -0700 |
commit | ede38fe9b9f93888e6e41afc7abb09525f44da95 (patch) | |
tree | 4ef437786285869a2ae70dc0d411ba475304e40a /Android.mk | |
parent | fbaaef999ba563838ebd00874ed8a1c01fbf286d (diff) | |
download | external_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.mk | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -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) |