| Wink Saville | ede38fe | 2010-05-28 11:49:52 -0700 | [diff] [blame] | 1 | # Copyright (C) 2009 The Android Open Source Project |
| Wink Saville | 79a4a60 | 2010-05-27 15:44:42 -0700 | [diff] [blame] | 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| Wink Saville | ede38fe | 2010-05-28 11:49:52 -0700 | [diff] [blame] | 14 | # |
| 15 | # |
| Wink Saville | 79a4a60 | 2010-05-27 15:44:42 -0700 | [diff] [blame] | 16 | |
| 17 | LOCAL_PATH := $(call my-dir) |
| Wink Saville | 79a4a60 | 2010-05-27 15:44:42 -0700 | [diff] [blame] | 18 | |
| Wink Saville | b3fe74b | 2010-06-03 15:33:07 -0700 | [diff] [blame^] | 19 | # Java micro library |
| 20 | # ======================================================= |
| 21 | include $(CLEAR_VARS) |
| Wink Saville | ede38fe | 2010-05-28 11:49:52 -0700 | [diff] [blame] | 22 | |
| 23 | LOCAL_MODULE := com.google.protobuf.micro |
| 24 | |
| Wink Saville | b3fe74b | 2010-06-03 15:33:07 -0700 | [diff] [blame^] | 25 | LOCAL_SRC_FILES := $(call all-java-files-under, java/src/main/java/com/google/protobuf/micro) |
| 26 | |
| Wink Saville | ede38fe | 2010-05-28 11:49:52 -0700 | [diff] [blame] | 27 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| Wink Saville | b3fe74b | 2010-06-03 15:33:07 -0700 | [diff] [blame^] | 28 | |
| 29 | # C++ lite library |
| 30 | # ======================================================= |
| 31 | include $(CLEAR_VARS) |
| 32 | |
| 33 | LOCAL_MODULE := libprotobuf-cpp-2.3.0-lite |
| 34 | |
| 35 | LOCAL_CPP_EXTENSION := .cc |
| 36 | |
| 37 | LOCAL_SRC_FILES := \ |
| 38 | src/google/protobuf/stubs/common.cc \ |
| 39 | src/google/protobuf/stubs/once.cc \ |
| 40 | src/google/protobuf/stubs/hash.cc \ |
| 41 | src/google/protobuf/stubs/hash.h \ |
| 42 | src/google/protobuf/stubs/map-util.h \ |
| 43 | src/google/protobuf/stubs/stl_util-inl.h \ |
| 44 | src/google/protobuf/extension_set.cc \ |
| 45 | src/google/protobuf/generated_message_util.cc \ |
| 46 | src/google/protobuf/message_lite.cc \ |
| 47 | src/google/protobuf/repeated_field.cc \ |
| 48 | src/google/protobuf/wire_format_lite.cc \ |
| 49 | src/google/protobuf/io/coded_stream.cc \ |
| 50 | src/google/protobuf/io/coded_stream_inl.h \ |
| 51 | src/google/protobuf/io/zero_copy_stream.cc \ |
| 52 | src/google/protobuf/io/zero_copy_stream_impl_lite.cc |
| 53 | |
| 54 | LOCAL_C_INCLUDES := \ |
| 55 | $(LOCAL_PATH)/android \ |
| 56 | bionic \ |
| 57 | external/stlport/stlport \ |
| 58 | $(LOCAL_PATH)/src |
| 59 | |
| 60 | LOCAL_SHARED_LIBRARIES := \ |
| 61 | libcutils libutils libstlport |
| 62 | |
| 63 | # Define the header files to be copied |
| 64 | #LOCAL_COPY_HEADERS := \ |
| 65 | # src/google/protobuf/stubs/once.h \ |
| 66 | # src/google/protobuf/stubs/common.h \ |
| 67 | # src/google/protobuf/io/coded_stream.h \ |
| 68 | # src/google/protobuf/generated_message_util.h \ |
| 69 | # src/google/protobuf/repeated_field.h \ |
| 70 | # src/google/protobuf/extension_set.h \ |
| 71 | # src/google/protobuf/wire_format_lite_inl.h |
| 72 | # |
| 73 | #LOCAL_COPY_HEADERS_TO := $(LOCAL_MODULE) |
| 74 | |
| 75 | LOCAL_CFLAGS := -DGOOGLE_PROTOBUF_NO_RTTI |
| 76 | |
| 77 | include $(BUILD_STATIC_LIBRARY) |