Android.mk revision 5ea4d5824c2de3b0e838f838d4513e9f4dcd7d00
1# Copyright (C) 2009 The Android Open Source Project
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.
14#
15#
16
17LOCAL_PATH := $(call my-dir)
18
19# Java micro library
20# =======================================================
21include $(CLEAR_VARS)
22
23LOCAL_MODULE := com.google.protobuf.micro
24
25LOCAL_SRC_FILES := $(call all-java-files-under, java/src/main/java/com/google/protobuf/micro)
26
27include $(BUILD_STATIC_JAVA_LIBRARY)
28
29# C++ lite library
30# =======================================================
31include $(CLEAR_VARS)
32
33LOCAL_MODULE := libprotobuf-cpp-2.3.0-lite
34
35LOCAL_CPP_EXTENSION := .cc
36
37LOCAL_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
54LOCAL_C_INCLUDES := \
55    $(LOCAL_PATH)/android \
56    bionic \
57    $(LOCAL_PATH)/src
58
59LOCAL_SHARED_LIBRARIES := \
60    libcutils libutils
61
62# stlport conflicts with the host stl library
63ifneq ($(TARGET_SIMULATOR),true)
64LOCAL_C_INCLUDES += external/stlport/stlport
65LOCAL_SHARED_LIBRARIES += libstlport
66endif
67
68# Define the header files to be copied
69#LOCAL_COPY_HEADERS := \
70#    src/google/protobuf/stubs/once.h \
71#    src/google/protobuf/stubs/common.h \
72#    src/google/protobuf/io/coded_stream.h \
73#    src/google/protobuf/generated_message_util.h \
74#    src/google/protobuf/repeated_field.h \
75#    src/google/protobuf/extension_set.h \
76#    src/google/protobuf/wire_format_lite_inl.h
77#
78#LOCAL_COPY_HEADERS_TO := $(LOCAL_MODULE)
79
80LOCAL_CFLAGS := -DGOOGLE_PROTOBUF_NO_RTTI
81
82include $(BUILD_STATIC_LIBRARY)
83