Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
435 lines
12 KiB
435 lines
12 KiB
# Copyright (c) 2009-2021, Google LLC |
|
# All rights reserved. |
|
# |
|
# Use of this source code is governed by a BSD-style |
|
# license that can be found in the LICENSE file or at |
|
# https://developers.google.com/open-source/licenses/bsd |
|
|
|
load( |
|
"//bazel:build_defs.bzl", |
|
"UPB_DEFAULT_COPTS", |
|
"UPB_DEFAULT_CPPOPTS", |
|
) |
|
load( |
|
"//bazel:upb_minitable_proto_library.bzl", |
|
"upb_minitable_proto_library", |
|
) |
|
load( |
|
"//bazel:upb_proto_library.bzl", |
|
"upb_c_proto_library", |
|
"upb_proto_reflection_library", |
|
) |
|
load( |
|
"//upb_generator:bootstrap_compiler.bzl", |
|
"bootstrap_cc_binary", |
|
"bootstrap_cc_library", |
|
"bootstrap_upb_proto_library", |
|
) |
|
|
|
# begin:google_only |
|
# package(default_applicable_licenses = ["//upb:license"]) |
|
# end:google_only |
|
|
|
licenses(["notice"]) |
|
|
|
proto_library( |
|
name = "code_generator_request", |
|
srcs = ["code_generator_request.proto"], |
|
visibility = ["//upb:friends"], |
|
deps = ["//:compiler_plugin_proto"], |
|
) |
|
|
|
upb_c_proto_library( |
|
name = "code_generator_request_upb_proto", |
|
visibility = ["//upb:friends"], |
|
deps = [":code_generator_request"], |
|
) |
|
|
|
upb_proto_reflection_library( |
|
name = "code_generator_request_upb_proto_reflection", |
|
visibility = ["//upb:friends"], |
|
deps = [":code_generator_request"], |
|
) |
|
|
|
upb_minitable_proto_library( |
|
name = "code_generator_request_upb_minitable_proto", |
|
visibility = ["//upb:friends"], |
|
deps = [":code_generator_request"], |
|
) |
|
|
|
bootstrap_upb_proto_library( |
|
name = "plugin_upb_proto", |
|
base_dir = "", |
|
# TODO: Export 'net/proto2/proto/descriptor.upb.h' and remove "-layering_check". |
|
features = ["-layering_check"], |
|
google3_src_files = [ |
|
"net/proto2/compiler/proto/profile.proto", |
|
"third_party/protobuf/compiler/plugin.proto", |
|
], |
|
google3_src_rules = [ |
|
"//net/proto2/proto:descriptor_proto_source", |
|
"//net/proto2/compiler/proto:profile.proto", |
|
"//src/google/protobuf/compiler:plugin_proto_source", |
|
], |
|
oss_src_files = ["google/protobuf/compiler/plugin.proto"], |
|
oss_src_rules = [ |
|
"//:descriptor_proto_srcs", |
|
"//src/google/protobuf/compiler:plugin_proto_src", |
|
], |
|
oss_strip_prefix = "third_party/protobuf/github/bootstrap/src", |
|
proto_lib_deps = ["//:compiler_plugin_proto"], |
|
visibility = ["//upb:friends"], |
|
deps = ["//upb/reflection:descriptor_upb_proto"], |
|
) |
|
|
|
upb_proto_reflection_library( |
|
name = "plugin_upb_proto_reflection", |
|
visibility = ["//upb:friends"], |
|
deps = ["//:compiler_plugin_proto"], |
|
) |
|
|
|
bootstrap_cc_library( |
|
name = "common", |
|
srcs = [ |
|
"common.cc", |
|
], |
|
hdrs = [ |
|
"common.h", |
|
], |
|
bootstrap_deps = [ |
|
"//upb/reflection:reflection", |
|
], |
|
copts = UPB_DEFAULT_CPPOPTS, |
|
visibility = ["//protos_generator:__pkg__"], |
|
deps = [ |
|
":mangle", |
|
"//upb:mini_table", |
|
"//upb:port", |
|
"@com_google_absl//absl/strings", |
|
], |
|
) |
|
|
|
bootstrap_cc_library( |
|
name = "file_layout", |
|
srcs = [ |
|
"file_layout.cc", |
|
], |
|
hdrs = [ |
|
"file_layout.h", |
|
], |
|
bootstrap_deps = [ |
|
":common", |
|
"//upb/reflection:reflection", |
|
"//upb/reflection:descriptor_upb_proto", |
|
], |
|
copts = UPB_DEFAULT_CPPOPTS, |
|
visibility = ["//visibility:public"], |
|
deps = [ |
|
"//upb:base", |
|
"//upb:mini_descriptor", |
|
"//upb:mini_table", |
|
"//upb:port", |
|
"@com_google_absl//absl/container:flat_hash_map", |
|
"@com_google_absl//absl/strings", |
|
], |
|
) |
|
|
|
cc_library( |
|
name = "keywords", |
|
srcs = [ |
|
"keywords.cc", |
|
], |
|
hdrs = [ |
|
"keywords.h", |
|
], |
|
copts = UPB_DEFAULT_CPPOPTS, |
|
visibility = ["//protos_generator:__pkg__"], |
|
) |
|
|
|
bootstrap_cc_library( |
|
name = "plugin", |
|
hdrs = [ |
|
"plugin.h", |
|
], |
|
bootstrap_deps = [ |
|
":plugin_upb_proto", |
|
"//upb/reflection:descriptor_upb_proto", |
|
"//upb/reflection:reflection", |
|
], |
|
copts = UPB_DEFAULT_CPPOPTS, |
|
visibility = ["//protos_generator:__pkg__"], |
|
deps = [ |
|
"//upb:port", |
|
"@com_google_absl//absl/container:flat_hash_set", |
|
"@com_google_absl//absl/log:absl_check", |
|
"@com_google_absl//absl/log:absl_log", |
|
"@com_google_absl//absl/strings", |
|
], |
|
) |
|
|
|
bootstrap_cc_library( |
|
name = "names", |
|
srcs = [ |
|
"names.cc", |
|
], |
|
hdrs = [ |
|
"names.h", |
|
], |
|
bootstrap_deps = [ |
|
"//upb/reflection:reflection", |
|
], |
|
copts = UPB_DEFAULT_CPPOPTS, |
|
visibility = ["//protos_generator:__pkg__"], |
|
deps = [ |
|
"//:protobuf", |
|
"@com_google_absl//absl/base:core_headers", |
|
"@com_google_absl//absl/container:flat_hash_map", |
|
"@com_google_absl//absl/strings", |
|
], |
|
) |
|
|
|
cc_library( |
|
name = "mangle", |
|
srcs = ["mangle.cc"], |
|
hdrs = ["mangle.h"], |
|
copts = UPB_DEFAULT_CPPOPTS, |
|
visibility = [ |
|
"//rust:__subpackages__", |
|
"//upb:friends", |
|
], |
|
deps = [ |
|
"@com_google_absl//absl/strings", |
|
], |
|
) |
|
|
|
cc_binary( |
|
name = "libupb_generator.so", |
|
srcs = ["upb_generator_so.c"], |
|
copts = UPB_DEFAULT_COPTS + ["-DUPB_BUILD_API"], |
|
linkshared = 1, |
|
linkstatic = 1, |
|
visibility = ["//visibility:public"], |
|
deps = [ |
|
":upbdev", |
|
"//upb:port", |
|
], |
|
) |
|
|
|
cc_library( |
|
name = "upbdev", |
|
srcs = [ |
|
"code_generator_request.c", |
|
"code_generator_request.h", |
|
"get_used_fields.c", |
|
"upbdev.c", |
|
], |
|
hdrs = [ |
|
"get_used_fields.h", |
|
"upbdev.h", |
|
], |
|
copts = UPB_DEFAULT_COPTS, |
|
visibility = ["//visibility:private"], |
|
deps = [ |
|
":code_generator_request_upb_proto", |
|
":code_generator_request_upb_proto_reflection", |
|
":plugin_upb_proto", |
|
":plugin_upb_proto_reflection", |
|
"//upb:base", |
|
"//upb:descriptor_upb_proto", |
|
"//upb:json", |
|
"//upb:mem", |
|
"//upb:message", |
|
"//upb:mini_descriptor", |
|
"//upb:mini_table", |
|
"//upb:port", |
|
"//upb:reflection", |
|
"//upb:wire", |
|
], |
|
) |
|
|
|
bootstrap_cc_binary( |
|
name = "protoc-gen-upb", |
|
bootstrap_deps = [ |
|
":protoc-gen-upb_lib", |
|
], |
|
copts = UPB_DEFAULT_CPPOPTS, |
|
visibility = ["//visibility:public"], |
|
) |
|
|
|
# TODO: This wrapper lib is a hack that we need because of how CcInfo works in Bazel 6. |
|
# In Bazel 7, our cmake dependency scraping works fine with cc_binary. |
|
bootstrap_cc_library( |
|
name = "protoc-gen-upb_lib", |
|
srcs = ["protoc-gen-upb.cc"], |
|
bootstrap_deps = [ |
|
":common", |
|
":file_layout", |
|
":names", |
|
":plugin", |
|
":plugin_upb_proto", |
|
"//upb/reflection:descriptor_upb_proto", |
|
"//upb/reflection:reflection", |
|
], |
|
copts = UPB_DEFAULT_CPPOPTS, |
|
visibility = ["//pkg:__pkg__"], |
|
deps = [ |
|
"//upb:base", |
|
"//upb:mem", |
|
"//upb:mini_table", |
|
"//upb:port", |
|
"//upb:wire_reader", |
|
"@com_google_absl//absl/container:flat_hash_map", |
|
"@com_google_absl//absl/container:flat_hash_set", |
|
"@com_google_absl//absl/log:absl_check", |
|
"@com_google_absl//absl/log:absl_log", |
|
"@com_google_absl//absl/strings", |
|
], |
|
) |
|
|
|
proto_lang_toolchain( |
|
name = "protoc-gen-upb_toolchain", |
|
command_line = "--upb_out=$(OUT)", |
|
output_files = "multiple", |
|
plugin = ":protoc-gen-upb_stage1", |
|
plugin_format_flag = "--plugin=protoc-gen-upb=%s", |
|
progress_message = "Generating upb protos", |
|
runtime = "//upb:generated_code_support__only_for_generated_code_do_not_use__i_give_permission_to_break_me", |
|
visibility = ["//visibility:public"], |
|
) |
|
|
|
bootstrap_cc_library( |
|
name = "protoc-gen-upb_minitable_lib", |
|
srcs = ["protoc-gen-upb_minitable.cc"], |
|
hdrs = ["protoc-gen-upb_minitable.h"], |
|
bootstrap_deps = [ |
|
":common", |
|
":file_layout", |
|
":names", |
|
":plugin", |
|
":plugin_upb_proto", |
|
"//upb/reflection:descriptor_upb_proto", |
|
"//upb/reflection:reflection", |
|
], |
|
copts = UPB_DEFAULT_CPPOPTS, |
|
visibility = ["//upb:friends"], |
|
deps = [ |
|
"//upb:base", |
|
"//upb:mem", |
|
"//upb:mini_table", |
|
"//upb:port", |
|
"//upb:wire_reader", |
|
"@com_google_absl//absl/container:flat_hash_map", |
|
"@com_google_absl//absl/container:flat_hash_set", |
|
"@com_google_absl//absl/log:absl_check", |
|
"@com_google_absl//absl/log:absl_log", |
|
"@com_google_absl//absl/strings", |
|
], |
|
) |
|
|
|
bootstrap_cc_binary( |
|
name = "protoc-gen-upb_minitable", |
|
bootstrap_deps = [ |
|
":protoc-gen-upb_minitable_lib_lib", |
|
], |
|
copts = UPB_DEFAULT_CPPOPTS, |
|
visibility = ["//visibility:public"], |
|
) |
|
|
|
# TODO: This wrapper lib is a hack that we need because of how CcInfo works in Bazel 6. |
|
# In Bazel 7, our cmake dependency scraping works fine with cc_binary. |
|
bootstrap_cc_library( |
|
name = "protoc-gen-upb_minitable_lib_lib", |
|
srcs = ["protoc-gen-upb_minitable-main.cc"], |
|
bootstrap_deps = [ |
|
":file_layout", |
|
":common", |
|
":plugin", |
|
":protoc-gen-upb_minitable_lib", |
|
], |
|
copts = UPB_DEFAULT_CPPOPTS, |
|
visibility = ["//pkg:__pkg__"], |
|
deps = [ |
|
"//upb:base", |
|
"//upb:port", |
|
"@com_google_absl//absl/log:absl_check", |
|
"@com_google_absl//absl/log:absl_log", |
|
], |
|
) |
|
|
|
proto_lang_toolchain( |
|
name = "protoc-gen-upb_minitable_toolchain", |
|
command_line = "--upb_minitable_out=$(OUT)", |
|
output_files = "multiple", |
|
plugin = ":protoc-gen-upb_minitable_stage1", |
|
plugin_format_flag = "--plugin=protoc-gen-upb_minitable=%s", |
|
progress_message = "Generating upb minitables", |
|
runtime = "//upb:generated_code_support__only_for_generated_code_do_not_use__i_give_permission_to_break_me", |
|
visibility = ["//visibility:public"], |
|
) |
|
|
|
cc_binary( |
|
name = "protoc-gen-upbdefs", |
|
linkopts = ["-lm"], |
|
visibility = ["//visibility:public"], |
|
deps = [ |
|
":protoc-gen-upbdefs_lib", |
|
], |
|
) |
|
|
|
# TODO: This wrapper lib is a hack that we need because of how CcInfo works in Bazel 6. |
|
# In Bazel 7, our cmake dependency scraping works fine with cc_binary. |
|
cc_library( |
|
name = "protoc-gen-upbdefs_lib", |
|
srcs = [ |
|
"protoc-gen-upbdefs.cc", |
|
], |
|
copts = UPB_DEFAULT_CPPOPTS, |
|
visibility = ["//pkg:__pkg__"], |
|
# To work around the following link error from ABSL: |
|
# /usr/bin/x86_64-linux-gnu-ld: bazel-out/k8-opt-exec-2B5CBBC6-ST-c1776f9924ec/bin/external/com_google_absl/absl/time/libtime.a(duration.o): undefined reference to symbol 'floor@@GLIBC_2.2.5' |
|
# /usr/bin/x86_64-linux-gnu-ld: /opt/manylinux/2014/x86_64/lib64/libm.so.6: error adding symbols: DSO missing from command line |
|
# clang-14: error: linker command failed with exit code 1 (use -v to see invocation) |
|
deps = [ |
|
":common", |
|
":file_layout", |
|
":plugin", |
|
"//upb:descriptor_upb_proto", |
|
"//upb:reflection", |
|
"//upb/util:def_to_proto", |
|
], |
|
) |
|
|
|
proto_lang_toolchain( |
|
name = "protoc-gen-upbdefs_toolchain", |
|
command_line = "--upbdefs_out=$(OUT)", |
|
output_files = "multiple", |
|
plugin = ":protoc-gen-upbdefs", |
|
plugin_format_flag = "--plugin=protoc-gen-upbdefs=%s", |
|
progress_message = "Generating upb protos", |
|
runtime = "//upb:generated_reflection_support__only_for_generated_code_do_not_use__i_give_permission_to_break_me", |
|
visibility = ["//visibility:public"], |
|
) |
|
|
|
cc_binary( |
|
name = "protoc-gen-upbdev", |
|
srcs = [ |
|
"protoc-gen-upbdev.cc", |
|
"subprocess.cc", |
|
"subprocess.h", |
|
], |
|
copts = UPB_DEFAULT_CPPOPTS, |
|
target_compatible_with = select({ |
|
"@platforms//os:windows": ["@platforms//:incompatible"], |
|
"//conditions:default": [], |
|
}), |
|
visibility = ["//visibility:public"], |
|
deps = [ |
|
":plugin_upb_proto", |
|
":upbdev", |
|
"//upb:base", |
|
"//upb:mem", |
|
"//upb:port", |
|
"@com_google_absl//absl/log:absl_log", |
|
"@com_google_absl//absl/strings", |
|
], |
|
)
|
|
|