protobuf android ndk makefile

直接把BUILD的内容拿来重新组织一下而已

我当前使用的commit如下,升级以后可能会新增或者删减文件,参考一下BUILD文件做一些简单的修改即可。

commit 963473b1dd4f37c5c0b8ca72f1c4a05225b927b7
Merge: 17174b5 d071766
Author: Thomas Van Lenten <thomasvl@google.com>
Date:   Thu Feb 23 15:18:17 2017 -0500

    Merge pull request #2753 from thomasvl/recursive_drop

    Add GPBMessageDropUnknownFieldsRecursively() and tests.

Application.mk

APP_ABI        := armeabi-v7a   #(32_bit(armeabi armeabi-v7a x86 mips), 64_bit(arm64-v8a x86_64 mips64))
APP_PLATFORM   := android-9     # "2.3" (3~25)
APP_STL        := gnustl_static #(system stlport_static stlport_shared gnustl_static gnustl_shared gabi++_static gabi++_shared)
APP_OPTIM      := release #(release debug)
APP_PIE        := true
APP_CPPFLAGS   := -frtti -std=c++11 -fexceptions

Android.mk

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)
LOCAL_MODULE := protobuf_lite

LOCAL_CFLAGS := -DHAVE_PTHREAD -Wall -Wwrite-strings \
  -Woverloaded-virtual -Wno-sign-compare -Wno-unused-function
LOCAL_EXPORT_CFLAGS := $(LOCAL_CFLAGS)

LOCAL_SRC_FILES := \
  src/google/protobuf/arena.cc \
  src/google/protobuf/arenastring.cc \
  src/google/protobuf/extension_set.cc \
  src/google/protobuf/generated_message_util.cc \
  src/google/protobuf/io/coded_stream.cc \
  src/google/protobuf/io/zero_copy_stream.cc \
  src/google/protobuf/io/zero_copy_stream_impl_lite.cc \
  src/google/protobuf/message_lite.cc \
  src/google/protobuf/repeated_field.cc \
  src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc \
  src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc \
  src/google/protobuf/stubs/bytestream.cc \
  src/google/protobuf/stubs/common.cc \
  src/google/protobuf/stubs/int128.cc \
  src/google/protobuf/stubs/once.cc \
  src/google/protobuf/stubs/status.cc \
  src/google/protobuf/stubs/statusor.cc \
  src/google/protobuf/stubs/stringpiece.cc \
  src/google/protobuf/stubs/stringprintf.cc \
  src/google/protobuf/stubs/structurally_valid.cc \
  src/google/protobuf/stubs/strutil.cc \
  src/google/protobuf/stubs/time.cc \
  src/google/protobuf/wire_format_lite.cc

LOCAL_C_INCLUDES := $(LOCAL_PATH)/src
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES)
include $(BUILD_STATIC_LIBRARY)


#---------- static module ----------#

include $(CLEAR_VARS)
LOCAL_MODULE := protobuf

LOCAL_SRC_FILES := \
    src/google/protobuf/any.cc \
    src/google/protobuf/any.pb.cc \
    src/google/protobuf/api.pb.cc \
    src/google/protobuf/compiler/importer.cc \
    src/google/protobuf/compiler/parser.cc \
    src/google/protobuf/descriptor.cc \
    src/google/protobuf/descriptor.pb.cc \
    src/google/protobuf/descriptor_database.cc \
    src/google/protobuf/duration.pb.cc \
    src/google/protobuf/dynamic_message.cc \
    src/google/protobuf/empty.pb.cc \
    src/google/protobuf/extension_set_heavy.cc \
    src/google/protobuf/field_mask.pb.cc \
    src/google/protobuf/generated_message_reflection.cc \
    src/google/protobuf/io/gzip_stream.cc \
    src/google/protobuf/io/printer.cc \
    src/google/protobuf/io/strtod.cc \
    src/google/protobuf/io/tokenizer.cc \
    src/google/protobuf/io/zero_copy_stream_impl.cc \
    src/google/protobuf/map_field.cc \
    src/google/protobuf/message.cc \
    src/google/protobuf/reflection_ops.cc \
    src/google/protobuf/service.cc \
    src/google/protobuf/source_context.pb.cc \
    src/google/protobuf/struct.pb.cc \
    src/google/protobuf/stubs/mathlimits.cc \
    src/google/protobuf/stubs/substitute.cc \
    src/google/protobuf/text_format.cc \
    src/google/protobuf/timestamp.pb.cc \
    src/google/protobuf/type.pb.cc \
    src/google/protobuf/unknown_field_set.cc \
    src/google/protobuf/util/field_comparator.cc \
    src/google/protobuf/util/field_mask_util.cc \
    src/google/protobuf/util/internal/datapiece.cc \
    src/google/protobuf/util/internal/default_value_objectwriter.cc \
    src/google/protobuf/util/internal/error_listener.cc \
    src/google/protobuf/util/internal/field_mask_utility.cc \
    src/google/protobuf/util/internal/json_escaping.cc \
    src/google/protobuf/util/internal/json_objectwriter.cc \
    src/google/protobuf/util/internal/json_stream_parser.cc \
    src/google/protobuf/util/internal/object_writer.cc \
    src/google/protobuf/util/internal/proto_writer.cc \
    src/google/protobuf/util/internal/protostream_objectsource.cc \
    src/google/protobuf/util/internal/protostream_objectwriter.cc \
    src/google/protobuf/util/internal/type_info.cc \
    src/google/protobuf/util/internal/type_info_test_helper.cc \
    src/google/protobuf/util/internal/utility.cc \
    src/google/protobuf/util/json_util.cc \
    src/google/protobuf/util/message_differencer.cc \
    src/google/protobuf/util/time_util.cc \
    src/google/protobuf/util/type_resolver_util.cc \
    src/google/protobuf/wire_format.cc \
    src/google/protobuf/wrappers.pb.cc

LOCAL_STATIC_LIBRARIES := protobuf_lite
LOCAL_LDLIBS           := -llog -lz
#include $(BUILD_STATIC_LIBRARY)
include $(BUILD_SHARED_LIBRARY)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值