// 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. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // 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. // // IGNORED_WARNINGS = [ "-Wno-sign-compare", "-Wno-unused-parameter", "-Wno-sign-promo", "-Wno-error=return-type", ] cc_defaults { name: "libprotobuf-cpp-lite-defaults", srcs: [ "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/arena.cc", "src/google/protobuf/arenastring.cc", "src/google/protobuf/extension_set.cc", "src/google/protobuf/generated_message_util.cc", "src/google/protobuf/message_lite.cc", "src/google/protobuf/repeated_field.cc", "src/google/protobuf/wire_format_lite.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", ], local_include_dirs: [ "android", "src", ], export_include_dirs: ["src"], cflags: IGNORED_WARNINGS, } // C++ lite library for the NDK. // ======================================================= cc_library_static { name: "libprotobuf-cpp-lite-ndk", defaults: ["libprotobuf-cpp-lite-defaults"], cflags: ["-DGOOGLE_PROTOBUF_NO_RTTI"], sdk_version: "9", stl: "stlport_static", } // C++ lite library for the platform and host. // ======================================================= cc_library { name: "libprotobuf-cpp-lite", host_supported: true, vendor_available: true, vndk: { enabled: true, }, defaults: ["libprotobuf-cpp-lite-defaults"], cflags: ["-DGOOGLE_PROTOBUF_NO_RTTI"], target: { windows: { enabled: true, }, }, } // C++ lite library for the platform and host. // ======================================================= cc_library_static { name: "libprotobuf-cpp-lite_static", host_supported: true, defaults: ["libprotobuf-cpp-lite-defaults"], cflags: ["-DGOOGLE_PROTOBUF_NO_RTTI"], } // C++ lite library + rtti (libc++ flavored for the platform and host) // ======================================================= cc_library_shared { name: "libprotobuf-cpp-lite-rtti", host_supported: true, vendor_available: true, defaults: ["libprotobuf-cpp-lite-defaults"], rtti: true, } // C++ full library // ======================================================= protobuf_cc_full_src_files = [ "src/google/protobuf/any.pb.cc", "src/google/protobuf/api.pb.cc", "src/google/protobuf/stubs/mathlimits.cc", "src/google/protobuf/any.cc", "src/google/protobuf/descriptor.cc", "src/google/protobuf/descriptor_database.cc", "src/google/protobuf/descriptor.pb.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/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/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/wire_format.cc", "src/google/protobuf/wrappers.pb.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/compiler/importer.cc", "src/google/protobuf/compiler/parser.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/protostream_objectsource.cc", "src/google/protobuf/util/internal/protostream_objectwriter.cc", "src/google/protobuf/util/internal/proto_writer.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", ] // C++ full library for the NDK. // ======================================================= cc_library_static { name: "libprotobuf-cpp-full-ndk", defaults: ["libprotobuf-cpp-lite-defaults"], srcs: protobuf_cc_full_src_files, shared_libs: ["libz"], cflags: ["-DGOOGLE_PROTOBUF_NO_RTTI"], sdk_version: "9", stl: "stlport_static", } // C++ full library for the NDK, Gnustl+rtti version. // ======================================================= cc_library_static { name: "libprotobuf-cpp-full-ndk-gnustl-rtti", defaults: ["libprotobuf-cpp-lite-defaults"], srcs: protobuf_cc_full_src_files, shared_libs: ["libz"], rtti: true, sdk_version: "14", stl: "gnustl_static", } // C++ full library for the platform and host // ======================================================= cc_library_shared { name: "libprotobuf-cpp-full", defaults: ["libprotobuf-cpp-lite-defaults"], host_supported: true, vendor_available: true, vndk: { enabled: true, }, srcs: protobuf_cc_full_src_files, cflags: ["-DGOOGLE_PROTOBUF_NO_RTTI"], target: { android: { shared_libs: ["libz", "liblog"], }, host: { shared_libs: ["libz-host"], }, }, } // C++ full library + rtti for the platform and host // ======================================================= cc_library_shared { name: "libprotobuf-cpp-full-rtti", defaults: ["libprotobuf-cpp-lite-defaults"], vendor_available: true, srcs: protobuf_cc_full_src_files, rtti: true, target: { android: { shared_libs: ["libz", "liblog"], }, host: { shared_libs: ["libz-host"], }, }, } // Compiler library for the host // ======================================================= cc_library_host_shared { name: "libprotoc", defaults: ["libprotobuf-cpp-lite-defaults"], srcs: protobuf_cc_full_src_files + [ "src/google/protobuf/compiler/plugin.pb.cc", ], local_include_dirs: [ "config", ], export_include_dirs: ["src", "config"], rtti: true, shared_libs: ["libz-host"], } // Android Protocol buffer compiler, aprotoc (host executable) // used by the build systems as $(PROTOC) defined in // build/core/config.mk // ======================================================= cc_binary_host { name: "aprotoc", target: { windows: { enabled: true, }, not_windows: { host_ldlibs: ["-lpthread"], }, }, // Statically link libc++ because we copy aprotoc to unbundled projects where // libc++.so may not be available. stl: "libc++_static", srcs: [ "src/google/protobuf/any.cc", "src/google/protobuf/arena.cc", "src/google/protobuf/arenastring.cc", "src/google/protobuf/descriptor.cc", "src/google/protobuf/descriptor.pb.cc", "src/google/protobuf/descriptor_database.cc", "src/google/protobuf/dynamic_message.cc", "src/google/protobuf/extension_set.cc", "src/google/protobuf/extension_set_heavy.cc", "src/google/protobuf/generated_message_reflection.cc", "src/google/protobuf/generated_message_util.cc", "src/google/protobuf/map_field.cc", "src/google/protobuf/message.cc", "src/google/protobuf/message_lite.cc", "src/google/protobuf/reflection_ops.cc", "src/google/protobuf/repeated_field.cc", "src/google/protobuf/service.cc", "src/google/protobuf/text_format.cc", "src/google/protobuf/unknown_field_set.cc", "src/google/protobuf/wire_format.cc", "src/google/protobuf/wire_format_lite.cc", "src/google/protobuf/compiler/code_generator.cc", "src/google/protobuf/compiler/command_line_interface.cc", "src/google/protobuf/compiler/cpp/cpp_enum.cc", "src/google/protobuf/compiler/cpp/cpp_enum_field.cc", "src/google/protobuf/compiler/cpp/cpp_extension.cc", "src/google/protobuf/compiler/cpp/cpp_field.cc", "src/google/protobuf/compiler/cpp/cpp_file.cc", "src/google/protobuf/compiler/cpp/cpp_generator.cc", "src/google/protobuf/compiler/cpp/cpp_helpers.cc", "src/google/protobuf/compiler/cpp/cpp_map_field.cc", "src/google/protobuf/compiler/cpp/cpp_message.cc", "src/google/protobuf/compiler/cpp/cpp_message_field.cc", "src/google/protobuf/compiler/cpp/cpp_primitive_field.cc", "src/google/protobuf/compiler/cpp/cpp_service.cc", "src/google/protobuf/compiler/cpp/cpp_string_field.cc", "src/google/protobuf/compiler/csharp/csharp_doc_comment.cc", "src/google/protobuf/compiler/csharp/csharp_enum.cc", "src/google/protobuf/compiler/csharp/csharp_enum_field.cc", "src/google/protobuf/compiler/csharp/csharp_field_base.cc", "src/google/protobuf/compiler/csharp/csharp_generator.cc", "src/google/protobuf/compiler/csharp/csharp_helpers.cc", "src/google/protobuf/compiler/csharp/csharp_map_field.cc", "src/google/protobuf/compiler/csharp/csharp_message.cc", "src/google/protobuf/compiler/csharp/csharp_message_field.cc", "src/google/protobuf/compiler/csharp/csharp_primitive_field.cc", "src/google/protobuf/compiler/csharp/csharp_reflection_class.cc", "src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc", "src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc", "src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc", "src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc", "src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc", "src/google/protobuf/compiler/importer.cc", "src/google/protobuf/compiler/java/java_context.cc", "src/google/protobuf/compiler/java/java_doc_comment.cc", "src/google/protobuf/compiler/java/java_enum.cc", "src/google/protobuf/compiler/java/java_enum_field.cc", "src/google/protobuf/compiler/java/java_enum_field_lite.cc", "src/google/protobuf/compiler/java/java_enum_lite.cc", "src/google/protobuf/compiler/java/java_extension.cc", "src/google/protobuf/compiler/java/java_extension_lite.cc", "src/google/protobuf/compiler/java/java_field.cc", "src/google/protobuf/compiler/java/java_file.cc", "src/google/protobuf/compiler/java/java_generator.cc", "src/google/protobuf/compiler/java/java_generator_factory.cc", "src/google/protobuf/compiler/java/java_helpers.cc", "src/google/protobuf/compiler/java/java_lazy_message_field.cc", "src/google/protobuf/compiler/java/java_lazy_message_field_lite.cc", "src/google/protobuf/compiler/java/java_map_field.cc", "src/google/protobuf/compiler/java/java_map_field_lite.cc", "src/google/protobuf/compiler/java/java_message_builder.cc", "src/google/protobuf/compiler/java/java_message_builder_lite.cc", "src/google/protobuf/compiler/java/java_message.cc", "src/google/protobuf/compiler/java/java_message_field.cc", "src/google/protobuf/compiler/java/java_message_field_lite.cc", "src/google/protobuf/compiler/java/java_message_lite.cc", "src/google/protobuf/compiler/java/java_name_resolver.cc", "src/google/protobuf/compiler/java/java_primitive_field.cc", "src/google/protobuf/compiler/java/java_primitive_field_lite.cc", "src/google/protobuf/compiler/java/java_service.cc", "src/google/protobuf/compiler/java/java_shared_code_generator.cc", "src/google/protobuf/compiler/java/java_string_field.cc", "src/google/protobuf/compiler/java/java_string_field_lite.cc", "src/google/protobuf/compiler/javamicro/javamicro_enum.cc", "src/google/protobuf/compiler/javamicro/javamicro_enum_field.cc", "src/google/protobuf/compiler/javamicro/javamicro_field.cc", "src/google/protobuf/compiler/javamicro/javamicro_file.cc", "src/google/protobuf/compiler/javamicro/javamicro_generator.cc", "src/google/protobuf/compiler/javamicro/javamicro_helpers.cc", "src/google/protobuf/compiler/javamicro/javamicro_message.cc", "src/google/protobuf/compiler/javamicro/javamicro_message_field.cc", "src/google/protobuf/compiler/javamicro/javamicro_primitive_field.cc", "src/google/protobuf/compiler/javanano/javanano_enum.cc", "src/google/protobuf/compiler/javanano/javanano_enum_field.cc", "src/google/protobuf/compiler/javanano/javanano_extension.cc", "src/google/protobuf/compiler/javanano/javanano_field.cc", "src/google/protobuf/compiler/javanano/javanano_file.cc", "src/google/protobuf/compiler/javanano/javanano_generator.cc", "src/google/protobuf/compiler/javanano/javanano_helpers.cc", "src/google/protobuf/compiler/javanano/javanano_map_field.cc", "src/google/protobuf/compiler/javanano/javanano_message.cc", "src/google/protobuf/compiler/javanano/javanano_message_field.cc", "src/google/protobuf/compiler/javanano/javanano_primitive_field.cc", "src/google/protobuf/compiler/js/js_generator.cc", "src/google/protobuf/compiler/main.cc", "src/google/protobuf/compiler/objectivec/objectivec_enum.cc", "src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc", "src/google/protobuf/compiler/objectivec/objectivec_extension.cc", "src/google/protobuf/compiler/objectivec/objectivec_field.cc", "src/google/protobuf/compiler/objectivec/objectivec_file.cc", "src/google/protobuf/compiler/objectivec/objectivec_generator.cc", "src/google/protobuf/compiler/objectivec/objectivec_helpers.cc", "src/google/protobuf/compiler/objectivec/objectivec_map_field.cc", "src/google/protobuf/compiler/objectivec/objectivec_message.cc", "src/google/protobuf/compiler/objectivec/objectivec_message_field.cc", "src/google/protobuf/compiler/objectivec/objectivec_oneof.cc", "src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc", "src/google/protobuf/compiler/parser.cc", "src/google/protobuf/compiler/plugin.cc", "src/google/protobuf/compiler/plugin.pb.cc", "src/google/protobuf/compiler/python/python_generator.cc", "src/google/protobuf/compiler/ruby/ruby_generator.cc", "src/google/protobuf/compiler/subprocess.cc", "src/google/protobuf/compiler/zip_writer.cc", "src/google/protobuf/io/coded_stream.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.cc", "src/google/protobuf/io/zero_copy_stream_impl.cc", "src/google/protobuf/io/zero_copy_stream_impl_lite.cc", "src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc", "src/google/protobuf/stubs/atomicops_internals_x86_msvc.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/stringpiece.cc", "src/google/protobuf/stubs/structurally_valid.cc", "src/google/protobuf/stubs/strutil.cc", "src/google/protobuf/stubs/substitute.cc", "src/google/protobuf/stubs/stringprintf.cc", ], local_include_dirs: [ "android", "src", ], static_libs: ["libz"], cflags: IGNORED_WARNINGS, }