aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP.Y. Laligand <pylaligand@google.com>2015-03-12 17:27:54 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-03-12 17:27:55 +0000
commit182e6d054c06f3a8e44cf9a09e14870366fa1190 (patch)
tree41a94b4bcab5558345abb3a230da5b048c5d8c20
parentba4c97c2d3811c60ad95627927ad2fc72406fb27 (diff)
parent69463b21c8dcc156bcdaf18191d0d8076c5ac93d (diff)
downloadexternal_protobuf-182e6d054c06f3a8e44cf9a09e14870366fa1190.zip
external_protobuf-182e6d054c06f3a8e44cf9a09e14870366fa1190.tar.gz
external_protobuf-182e6d054c06f3a8e44cf9a09e14870366fa1190.tar.bz2
Merge "Added a build rule for the full version of the protocol buffer library."
-rw-r--r--Android.mk17
1 files changed, 17 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 5dc957c..9b8d0ef 100644
--- a/Android.mk
+++ b/Android.mk
@@ -66,6 +66,12 @@ JAVA_LITE_SRC_FILES := \
java/src/main/java/com/google/protobuf/SmallSortedMap.java \
java/src/main/java/com/google/protobuf/Utf8.java
+# This contains more source files than needed for the full version, but the
+# additional files should not create any conflict.
+JAVA_FULL_SRC_FILES := \
+ $(call all-java-files-under, java/src/main/java) \
+ src/google/protobuf/descriptor.proto
+
COMPILER_SRC_FILES := \
src/google/protobuf/descriptor.cc \
src/google/protobuf/descriptor.pb.cc \
@@ -230,6 +236,17 @@ LOCAL_SRC_FILES := $(JAVA_LITE_SRC_FILES)
include $(BUILD_HOST_JAVA_LIBRARY)
+# Java full library (for host-side users)
+# =======================================================
+include $(CLEAR_VARS)
+
+LOCAL_MODULE := host-libprotobuf-java-full
+LOCAL_MODULE_TAGS := optional
+
+LOCAL_SRC_FILES := $(JAVA_FULL_SRC_FILES)
+
+include $(BUILD_HOST_JAVA_LIBRARY)
+
# C++ lite library
# =======================================================
include $(CLEAR_VARS)