499 lines
20 KiB
Plaintext
499 lines
20 KiB
Plaintext
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
# this work for additional information regarding copyright ownership.
|
|
# The ASF licenses this file to You 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.
|
|
#
|
|
# Copyright 2008 Google Inc. All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions are
|
|
# met:
|
|
#
|
|
# * Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# * Redistributions in binary form must reproduce the above
|
|
# copyright notice, this list of conditions and the following disclaimer
|
|
# in the documentation and/or other materials provided with the
|
|
# distribution.
|
|
# * Neither the name of Google Inc. nor the names of its
|
|
# contributors may be used to endorse or promote products derived from
|
|
# this software without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
# Copied from https://github.com/protocolbuffers/protobuf/blob/v3.19.1/BUILD
|
|
#
|
|
# Modifications:
|
|
# 1. Remove all non-cxx rules.
|
|
# 2. Remove android support.
|
|
# 3. zlib use @com_github_madler_zlib//:zlib
|
|
|
|
# Bazel (https://bazel.build/) BUILD file for Protobuf.
|
|
|
|
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library", native_cc_proto_library = "cc_proto_library")
|
|
load("@rules_proto//proto:defs.bzl", "proto_lang_toolchain", "proto_library")
|
|
load(":compiler_config_setting.bzl", "create_compiler_config_setting")
|
|
load(
|
|
":protobuf.bzl",
|
|
"adapt_proto_library",
|
|
)
|
|
|
|
licenses(["notice"])
|
|
|
|
exports_files(["LICENSE"])
|
|
|
|
################################################################################
|
|
# build configuration
|
|
################################################################################
|
|
|
|
################################################################################
|
|
# ZLIB configuration
|
|
################################################################################
|
|
|
|
ZLIB_DEPS = ["@com_github_madler_zlib//:zlib"]
|
|
|
|
################################################################################
|
|
# Protobuf Runtime Library
|
|
################################################################################
|
|
|
|
MSVC_COPTS = [
|
|
"/wd4018", # -Wno-sign-compare
|
|
"/wd4065", # switch statement contains 'default' but no 'case' labels
|
|
"/wd4146", # unary minus operator applied to unsigned type, result still unsigned
|
|
"/wd4244", # 'conversion' conversion from 'type1' to 'type2', possible loss of data
|
|
"/wd4251", # 'identifier' : class 'type' needs to have dll-interface to be used by clients of class 'type2'
|
|
"/wd4267", # 'var' : conversion from 'size_t' to 'type', possible loss of data
|
|
"/wd4305", # 'identifier' : truncation from 'type1' to 'type2'
|
|
"/wd4307", # 'operator' : integral constant overflow
|
|
"/wd4309", # 'conversion' : truncation of constant value
|
|
"/wd4334", # 'operator' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?)
|
|
"/wd4355", # 'this' : used in base member initializer list
|
|
"/wd4506", # no definition for inline function 'function'
|
|
"/wd4800", # 'type' : forcing value to bool 'true' or 'false' (performance warning)
|
|
"/wd4996", # The compiler encountered a deprecated declaration.
|
|
]
|
|
|
|
COPTS = select({
|
|
":msvc": MSVC_COPTS,
|
|
"//conditions:default": [
|
|
"-DHAVE_ZLIB",
|
|
"-Wmissing-field-initializers",
|
|
"-Woverloaded-virtual",
|
|
"-Wno-sign-compare",
|
|
],
|
|
})
|
|
|
|
create_compiler_config_setting(
|
|
name = "msvc",
|
|
value = "msvc-cl",
|
|
visibility = [
|
|
# Public, but Protobuf only visibility.
|
|
"//:__subpackages__",
|
|
],
|
|
)
|
|
|
|
# Android and MSVC builds do not need to link in a separate pthread library.
|
|
LINK_OPTS = select({
|
|
":msvc": [
|
|
# Suppress linker warnings about files with no symbols defined.
|
|
"-ignore:4221",
|
|
],
|
|
"//conditions:default": [
|
|
"-lpthread",
|
|
"-lm",
|
|
],
|
|
})
|
|
|
|
cc_library(
|
|
name = "protobuf_lite",
|
|
srcs = [
|
|
# AUTOGEN(protobuf_lite_srcs)
|
|
"src/google/protobuf/any_lite.cc",
|
|
"src/google/protobuf/arena.cc",
|
|
"src/google/protobuf/arenastring.cc",
|
|
"src/google/protobuf/extension_set.cc",
|
|
"src/google/protobuf/generated_enum_util.cc",
|
|
"src/google/protobuf/generated_message_table_driven_lite.cc",
|
|
"src/google/protobuf/generated_message_tctable_lite.cc",
|
|
"src/google/protobuf/generated_message_util.cc",
|
|
"src/google/protobuf/implicit_weak_message.cc",
|
|
"src/google/protobuf/inlined_string_field.cc",
|
|
"src/google/protobuf/io/coded_stream.cc",
|
|
"src/google/protobuf/io/io_win32.cc",
|
|
"src/google/protobuf/io/strtod.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/map.cc",
|
|
"src/google/protobuf/message_lite.cc",
|
|
"src/google/protobuf/parse_context.cc",
|
|
"src/google/protobuf/repeated_field.cc",
|
|
"src/google/protobuf/repeated_ptr_field.cc",
|
|
"src/google/protobuf/stubs/bytestream.cc",
|
|
"src/google/protobuf/stubs/common.cc",
|
|
"src/google/protobuf/stubs/int128.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",
|
|
],
|
|
hdrs = glob([
|
|
"src/google/protobuf/**/*.h",
|
|
"src/google/protobuf/**/*.inc",
|
|
]),
|
|
copts = COPTS,
|
|
includes = ["src/"],
|
|
linkopts = LINK_OPTS,
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
PROTOBUF_DEPS = select({
|
|
":msvc": [],
|
|
"//conditions:default": ZLIB_DEPS,
|
|
})
|
|
|
|
cc_library(
|
|
name = "protobuf",
|
|
srcs = [
|
|
# AUTOGEN(protobuf_srcs)
|
|
"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_bases.cc",
|
|
"src/google/protobuf/generated_message_reflection.cc",
|
|
"src/google/protobuf/generated_message_table_driven.cc",
|
|
"src/google/protobuf/generated_message_tctable_full.cc",
|
|
"src/google/protobuf/io/gzip_stream.cc",
|
|
"src/google/protobuf/io/printer.cc",
|
|
"src/google/protobuf/io/tokenizer.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/util/delimited_message_util.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/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",
|
|
],
|
|
hdrs = glob([
|
|
"src/**/*.h",
|
|
"src/**/*.inc",
|
|
]),
|
|
copts = COPTS,
|
|
includes = ["src/"],
|
|
linkopts = LINK_OPTS,
|
|
visibility = ["//visibility:public"],
|
|
deps = [":protobuf_lite"] + PROTOBUF_DEPS,
|
|
)
|
|
|
|
# This provides just the header files for use in projects that need to build
|
|
# shared libraries for dynamic loading. This target is available until Bazel
|
|
# adds native support for such use cases.
|
|
# TODO(keveman): Remove this target once the support gets added to Bazel.
|
|
cc_library(
|
|
name = "protobuf_headers",
|
|
hdrs = glob([
|
|
"src/**/*.h",
|
|
"src/**/*.inc",
|
|
]),
|
|
includes = ["src/"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
# Map of all well known protos.
|
|
# name => (include path, imports)
|
|
WELL_KNOWN_PROTO_MAP = {
|
|
"any": ("src/google/protobuf/any.proto", []),
|
|
"api": (
|
|
"src/google/protobuf/api.proto",
|
|
[
|
|
"source_context",
|
|
"type",
|
|
],
|
|
),
|
|
"compiler_plugin": (
|
|
"src/google/protobuf/compiler/plugin.proto",
|
|
["descriptor"],
|
|
),
|
|
"descriptor": ("src/google/protobuf/descriptor.proto", []),
|
|
"duration": ("src/google/protobuf/duration.proto", []),
|
|
"empty": ("src/google/protobuf/empty.proto", []),
|
|
"field_mask": ("src/google/protobuf/field_mask.proto", []),
|
|
"source_context": ("src/google/protobuf/source_context.proto", []),
|
|
"struct": ("src/google/protobuf/struct.proto", []),
|
|
"timestamp": ("src/google/protobuf/timestamp.proto", []),
|
|
"type": (
|
|
"src/google/protobuf/type.proto",
|
|
[
|
|
"any",
|
|
"source_context",
|
|
],
|
|
),
|
|
"wrappers": ("src/google/protobuf/wrappers.proto", []),
|
|
}
|
|
|
|
WELL_KNOWN_PROTOS = [value[0] for value in WELL_KNOWN_PROTO_MAP.values()]
|
|
|
|
LITE_WELL_KNOWN_PROTO_MAP = {
|
|
"any": ("src/google/protobuf/any.proto", []),
|
|
"api": (
|
|
"src/google/protobuf/api.proto",
|
|
[
|
|
"source_context",
|
|
"type",
|
|
],
|
|
),
|
|
"duration": ("src/google/protobuf/duration.proto", []),
|
|
"empty": ("src/google/protobuf/empty.proto", []),
|
|
"field_mask": ("src/google/protobuf/field_mask.proto", []),
|
|
"source_context": ("src/google/protobuf/source_context.proto", []),
|
|
"struct": ("src/google/protobuf/struct.proto", []),
|
|
"timestamp": ("src/google/protobuf/timestamp.proto", []),
|
|
"type": (
|
|
"src/google/protobuf/type.proto",
|
|
[
|
|
"any",
|
|
"source_context",
|
|
],
|
|
),
|
|
"wrappers": ("src/google/protobuf/wrappers.proto", []),
|
|
}
|
|
|
|
LITE_WELL_KNOWN_PROTOS = [value[0] for value in LITE_WELL_KNOWN_PROTO_MAP.values()]
|
|
|
|
filegroup(
|
|
name = "well_known_protos",
|
|
srcs = WELL_KNOWN_PROTOS,
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "lite_well_known_protos",
|
|
srcs = LITE_WELL_KNOWN_PROTOS,
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
adapt_proto_library(
|
|
name = "cc_wkt_protos_genproto",
|
|
visibility = ["//visibility:public"],
|
|
deps = [proto + "_proto" for proto in WELL_KNOWN_PROTO_MAP.keys()],
|
|
)
|
|
|
|
cc_library(
|
|
name = "cc_wkt_protos",
|
|
deprecation = "Only for backward compatibility. Do not use.",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
################################################################################
|
|
# Well Known Types Proto Library Rules
|
|
#
|
|
# These proto_library rules can be used with one of the language specific proto
|
|
# library rules i.e. java_proto_library:
|
|
#
|
|
# java_proto_library(
|
|
# name = "any_java_proto",
|
|
# deps = ["@com_google_protobuf//:any_proto],
|
|
# )
|
|
################################################################################
|
|
|
|
[proto_library(
|
|
name = proto[0] + "_proto",
|
|
srcs = [proto[1][0]],
|
|
strip_import_prefix = "src",
|
|
visibility = ["//visibility:public"],
|
|
deps = [dep + "_proto" for dep in proto[1][1]],
|
|
) for proto in WELL_KNOWN_PROTO_MAP.items()]
|
|
|
|
[native_cc_proto_library(
|
|
name = proto + "_cc_proto",
|
|
visibility = ["//visibility:private"],
|
|
deps = [proto + "_proto"],
|
|
) for proto in WELL_KNOWN_PROTO_MAP.keys()]
|
|
|
|
################################################################################
|
|
# Protocol Buffers Compiler
|
|
################################################################################
|
|
|
|
cc_library(
|
|
name = "protoc_lib",
|
|
srcs = [
|
|
# AUTOGEN(protoc_lib_srcs)
|
|
"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_padding_optimizer.cc",
|
|
"src/google/protobuf/compiler/cpp/cpp_parse_function_generator.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/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_kotlin_generator.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.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_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/js/js_generator.cc",
|
|
"src/google/protobuf/compiler/js/well_known_types_embed.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/php/php_generator.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",
|
|
],
|
|
copts = COPTS,
|
|
includes = ["src/"],
|
|
linkopts = LINK_OPTS,
|
|
visibility = ["//visibility:public"],
|
|
deps = [":protobuf"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "protoc",
|
|
srcs = ["src/google/protobuf/compiler/main.cc"],
|
|
linkopts = LINK_OPTS,
|
|
visibility = ["//visibility:public"],
|
|
deps = [":protoc_lib"],
|
|
)
|
|
|
|
proto_lang_toolchain(
|
|
name = "cc_toolchain",
|
|
blacklisted_protos = [proto + "_proto" for proto in WELL_KNOWN_PROTO_MAP.keys()],
|
|
command_line = "--cpp_out=$(OUT)",
|
|
runtime = ":protobuf",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
alias(
|
|
name = "objectivec",
|
|
actual = "//objectivec",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
alias(
|
|
name = "protobuf_objc",
|
|
actual = "//objectivec",
|
|
visibility = ["//visibility:public"],
|
|
)
|