| # Copyright (c) 2009-2021, Google LLC |
| # 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 LLC 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 Google LLC 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. |
| |
| load( |
| "//bazel:build_defs.bzl", |
| "UPB_DEFAULT_COPTS", |
| "UPB_DEFAULT_CPPOPTS", |
| ) |
| load( |
| "//bazel:upb_proto_library.bzl", |
| "upb_proto_library", |
| "upb_proto_library_copts", |
| "upb_proto_reflection_library", |
| ) |
| load("@bazel_skylib//rules:common_settings.bzl", "bool_flag") |
| load( |
| "//upbc:bootstrap_compiler.bzl", |
| "bootstrap_cc_library", |
| "bootstrap_upb_proto_library", |
| ) |
| |
| # begin:google_only |
| # load( |
| # "//third_party/bazel_rules/rules_kotlin/kotlin/native:native_interop_hint.bzl", |
| # "kt_native_interop_hint", |
| # ) |
| # end:google_only |
| |
| # begin:github_only |
| load( |
| "//bazel:amalgamation.bzl", |
| "upb_amalgamation", |
| ) |
| load("@rules_pkg//:mappings.bzl", "pkg_files") |
| # end:github_only |
| |
| licenses(["notice"]) |
| |
| exports_files(["LICENSE"]) |
| |
| exports_files( |
| [ |
| "BUILD", |
| "WORKSPACE", |
| ], |
| visibility = ["//cmake:__pkg__"], |
| ) |
| |
| config_setting( |
| name = "windows", |
| constraint_values = ["@platforms//os:windows"], |
| visibility = ["//visibility:public"], |
| ) |
| |
| bool_flag( |
| name = "fasttable_enabled", |
| build_setting_default = False, |
| visibility = ["//visibility:public"], |
| ) |
| |
| config_setting( |
| name = "fasttable_enabled_setting", |
| flag_values = {"//:fasttable_enabled": "true"}, |
| visibility = ["//visibility:public"], |
| ) |
| |
| upb_proto_library_copts( |
| name = "upb_proto_library_copts__for_generated_code_only_do_not_use", |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| ) |
| |
| # Please update copy.bara.sky target = ":friends" if |
| # you make changes to this list. |
| package_group( |
| name = "friends", |
| packages = [], |
| ) |
| |
| # Public C/C++ libraries ####################################################### |
| |
| cc_library( |
| name = "port", |
| hdrs = [ |
| "upb/port/atomic.h", |
| "upb/port/vsnprintf_compat.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| textual_hdrs = [ |
| "upb/port/def.inc", |
| "upb/port/undef.inc", |
| ], |
| visibility = ["//:__subpackages__"], |
| ) |
| |
| cc_library( |
| name = "upb", |
| hdrs = [ |
| "upb/alloc.h", |
| "upb/arena.h", |
| "upb/array.h", |
| "upb/base/descriptor_constants.h", |
| "upb/base/status.h", |
| "upb/base/string_view.h", |
| "upb/collections/array.h", |
| "upb/decode.h", |
| "upb/encode.h", |
| "upb/extension_registry.h", |
| "upb/map.h", |
| "upb/mem/alloc.h", |
| "upb/mem/arena.h", |
| "upb/message/extension_internal.h", |
| "upb/message/message.h", |
| "upb/mini_table/extension_registry.h", |
| "upb/msg.h", |
| "upb/status.h", |
| "upb/string_view.h", |
| "upb/upb.h", |
| "upb/upb.hpp", |
| "upb/wire/common.h", |
| "upb/wire/decode.h", |
| "upb/wire/encode.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":base", |
| ":collections_internal", |
| ":fastdecode", |
| ":hash", |
| ":lex", |
| ":mem", |
| ":message_internal", |
| ":mini_table_internal", |
| ":port", |
| ":wire", |
| ], |
| ) |
| |
| cc_library( |
| name = "base", |
| srcs = [ |
| "upb/base/status.c", |
| ], |
| hdrs = [ |
| "upb/base/descriptor_constants.h", |
| "upb/base/log2.h", |
| "upb/base/status.h", |
| "upb/base/string_view.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//:__subpackages__"], |
| deps = [":port"], |
| ) |
| |
| cc_library( |
| name = "mini_table", |
| hdrs = [ |
| "upb/mini_table.h", |
| "upb/mini_table/decode.h", |
| "upb/mini_table/extension_registry.h", |
| "upb/mini_table/types.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":base", |
| ":mem", |
| ":mini_table_internal", |
| ":port", |
| ], |
| ) |
| |
| cc_library( |
| name = "mini_table_internal", |
| srcs = [ |
| "upb/mini_table/common.c", |
| "upb/mini_table/decode.c", |
| "upb/mini_table/encode.c", |
| "upb/mini_table/extension_registry.c", |
| ], |
| hdrs = [ |
| "upb/mini_table/common.h", |
| "upb/mini_table/common_internal.h", |
| "upb/mini_table/decode.h", |
| "upb/mini_table/encode_internal.h", |
| "upb/mini_table/encode_internal.hpp", |
| "upb/mini_table/enum_internal.h", |
| "upb/mini_table/extension_internal.h", |
| "upb/mini_table/extension_registry.h", |
| "upb/mini_table/field_internal.h", |
| "upb/mini_table/file_internal.h", |
| "upb/mini_table/message_internal.h", |
| "upb/mini_table/sub_internal.h", |
| "upb/mini_table/types.h", |
| ], |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":base", |
| ":hash", |
| ":mem", |
| ":port", |
| ], |
| ) |
| |
| cc_library( |
| name = "message", |
| hdrs = [ |
| "upb/message/message.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":mem", |
| ":message_internal", |
| ":mini_table", |
| ":port", |
| ], |
| ) |
| |
| cc_library( |
| name = "message_internal", |
| srcs = [ |
| "upb/message/message.c", |
| ], |
| hdrs = [ |
| "upb/message/extension_internal.h", |
| "upb/message/internal.h", |
| "upb/message/message.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":base", |
| ":hash", |
| ":mem", |
| ":mini_table_internal", |
| ":port", |
| ], |
| ) |
| |
| cc_library( |
| name = "message_accessors", |
| srcs = [ |
| "upb/message/accessors.c", |
| "upb/message/accessors_internal.h", |
| ], |
| hdrs = [ |
| "upb/message/accessors.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":collections_internal", |
| ":eps_copy_input_stream", |
| ":hash", |
| ":message_internal", |
| ":mini_table_internal", |
| ":port", |
| ":upb", |
| ":wire", |
| ":wire_reader", |
| ], |
| ) |
| |
| cc_library( |
| name = "message_promote", |
| srcs = [ |
| "upb/message/promote.c", |
| ], |
| hdrs = [ |
| "upb/message/promote.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":collections_internal", |
| ":eps_copy_input_stream", |
| ":hash", |
| ":message_accessors", |
| ":message_internal", |
| ":mini_table_internal", |
| ":port", |
| ":upb", |
| ":wire", |
| ":wire_reader", |
| ], |
| ) |
| |
| cc_library( |
| name = "message_copy", |
| srcs = [ |
| "upb/message/copy.c", |
| ], |
| hdrs = [ |
| "upb/message/copy.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":collections_internal", |
| ":message_accessors", |
| ":message_internal", |
| ":mini_table_internal", |
| ":port", |
| ":upb", |
| ], |
| ) |
| |
| cc_library( |
| name = "message_split64", |
| hdrs = [ |
| "upb/message/accessors_split64.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":message_accessors", |
| ":port", |
| ], |
| ) |
| |
| cc_test( |
| name = "mini_table_encode_test", |
| srcs = [ |
| "upb/mini_table/encode_test.cc", |
| ], |
| deps = [ |
| ":collections_internal", |
| ":hash", |
| ":message_internal", |
| ":mini_table_internal", |
| ":port", |
| ":upb", |
| "@com_google_absl//absl/container:flat_hash_set", |
| "@com_google_googletest//:gtest_main", |
| "@com_google_protobuf//:protobuf", |
| ], |
| ) |
| |
| cc_test( |
| name = "message_accessors_test", |
| srcs = ["upb/message/accessors_test.cc"], |
| deps = [ |
| ":collections", |
| ":message_accessors", |
| ":mini_table_internal", |
| ":port", |
| ":upb", |
| "//upb/test:test_messages_proto2_upb_proto", |
| "//upb/test:test_messages_proto3_upb_proto", |
| "//upb/test:test_upb_proto", |
| "@com_google_absl//absl/container:flat_hash_set", |
| "@com_google_googletest//:gtest_main", |
| "@com_google_protobuf//:protobuf", |
| ], |
| ) |
| |
| cc_test( |
| name = "message_promote_test", |
| srcs = ["upb/message/promote_test.cc"], |
| deps = [ |
| ":collections", |
| ":message_accessors", |
| ":message_promote", |
| ":mini_table_internal", |
| ":port", |
| ":upb", |
| "//upb/test:test_messages_proto2_upb_proto", |
| "//upb/test:test_messages_proto3_upb_proto", |
| "//upb/test:test_upb_proto", |
| "@com_google_absl//absl/container:flat_hash_set", |
| "@com_google_googletest//:gtest_main", |
| "@com_google_protobuf//:protobuf", |
| ], |
| ) |
| |
| cc_test( |
| name = "message_copy_test", |
| srcs = ["upb/message/copy_test.cc"], |
| deps = [ |
| ":collections", |
| ":message_accessors", |
| ":message_copy", |
| ":mini_table_internal", |
| ":upb", |
| "//upb/test:test_messages_proto2_upb_proto", |
| "//upb/test:test_messages_proto3_upb_proto", |
| "//upb/test:test_upb_proto", |
| "@com_google_absl//absl/container:flat_hash_set", |
| "@com_google_googletest//:gtest_main", |
| "@com_google_protobuf//:protobuf", |
| ], |
| ) |
| |
| cc_library( |
| name = "fastdecode", |
| copts = UPB_DEFAULT_COPTS, |
| deps = [ |
| ":base", |
| ":collections_internal", |
| ":hash", |
| ":mem_internal", |
| ":message_internal", |
| ":mini_table_internal", |
| ":port", |
| ":wire", |
| ], |
| ) |
| |
| # Common support routines used by generated code. This library has no |
| # implementation, but depends on :upb and exposes a few more hdrs. |
| # |
| # This is public only because we have no way of visibility-limiting it to |
| # upb_proto_library() only. This interface is not stable and by using it you |
| # give up any backward compatibility guarantees. |
| cc_library( |
| name = "generated_code_support__only_for_generated_code_do_not_use__i_give_permission_to_break_me", |
| hdrs = [ |
| "upb/collections/array.h", |
| "upb/collections/array_internal.h", |
| "upb/collections/map_gencode_util.h", |
| "upb/collections/message_value.h", |
| "upb/extension_registry.h", |
| "upb/message/accessors.h", |
| "upb/message/accessors_internal.h", |
| "upb/message/extension_internal.h", |
| "upb/message/internal.h", |
| "upb/message/message.h", |
| "upb/mini_table/common.h", |
| "upb/mini_table/enum_internal.h", |
| "upb/mini_table/extension_internal.h", |
| "upb/mini_table/field_internal.h", |
| "upb/mini_table/file_internal.h", |
| "upb/mini_table/message_internal.h", |
| "upb/mini_table/sub_internal.h", |
| "upb/mini_table/types.h", |
| "upb/port/def.inc", |
| "upb/port/undef.inc", |
| "upb/wire/decode.h", |
| "upb/wire/decode_fast.h", |
| "upb/wire/encode.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":base", |
| ":collections_internal", |
| ":hash", |
| ":upb", |
| ], |
| ) |
| |
| # Common support code for C++ generated code. |
| cc_library( |
| name = "generated_cpp_support__only_for_generated_code_do_not_use__i_give_permission_to_break_me", |
| hdrs = [ |
| "upb/message/copy.h", |
| "upb/message/extension_internal.h", |
| "upb/message/internal.h", |
| "upb/message/message.h", |
| "upb/mini_table/common.h", |
| "upb/mini_table/enum_internal.h", |
| "upb/mini_table/extension_internal.h", |
| "upb/mini_table/field_internal.h", |
| "upb/mini_table/file_internal.h", |
| "upb/mini_table/message_internal.h", |
| "upb/mini_table/sub_internal.h", |
| "upb/mini_table/types.h", |
| "upb/port/def.inc", |
| "upb/port/undef.inc", |
| "upb/upb.hpp", |
| "upb/wire/decode.h", |
| "upb/wire/decode_fast.h", |
| "upb/wire/encode.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":base", |
| ":collections_internal", |
| ":hash", |
| ":message_copy", |
| ":mini_table", |
| ":upb", |
| ], |
| ) |
| |
| cc_library( |
| name = "generated_reflection_support__only_for_generated_code_do_not_use__i_give_permission_to_break_me", |
| hdrs = [ |
| "upb/port/def.inc", |
| "upb/port/undef.inc", |
| "upb/reflection/def.h", |
| "upb/reflection/def_pool_internal.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":base", |
| ":descriptor_upb_proto", |
| ":hash", |
| ":mini_table_internal", |
| ":reflection_internal", |
| ], |
| ) |
| |
| bootstrap_upb_proto_library( |
| name = "descriptor_upb_proto", |
| base_dir = "upb/reflection/", |
| google3_src_files = ["net/proto2/proto/descriptor.proto"], |
| google3_src_rules = ["//net/proto2/proto:descriptor_proto_source"], |
| oss_src_files = ["google/protobuf/descriptor.proto"], |
| oss_src_rules = ["@com_google_protobuf//:descriptor_proto_srcs"], |
| oss_strip_prefix = "third_party/protobuf/github/bootstrap/src", |
| proto_lib_deps = ["@com_google_protobuf//:descriptor_proto"], |
| visibility = ["//visibility:public"], |
| ) |
| |
| upb_proto_reflection_library( |
| name = "descriptor_upb_proto_reflection", |
| visibility = ["//visibility:public"], |
| deps = ["@com_google_protobuf//:descriptor_proto"], |
| ) |
| |
| cc_library( |
| name = "collections", |
| hdrs = [ |
| "upb/collections/array.h", |
| "upb/collections/map.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":base", |
| ":collections_internal", |
| ":mem", |
| ":port", |
| ], |
| ) |
| |
| cc_library( |
| name = "collections_internal", |
| srcs = [ |
| "upb/collections/array.c", |
| "upb/collections/map.c", |
| "upb/collections/map_sorter.c", |
| ], |
| hdrs = [ |
| "upb/collections/array.h", |
| "upb/collections/array_internal.h", |
| "upb/collections/map.h", |
| "upb/collections/map_gencode_util.h", |
| "upb/collections/map_internal.h", |
| "upb/collections/map_sorter_internal.h", |
| "upb/collections/message_value.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//:__subpackages__"], |
| deps = [ |
| ":base", |
| ":hash", |
| ":mem", |
| ":message_internal", |
| ":mini_table_internal", |
| ":port", |
| ], |
| ) |
| |
| cc_library( |
| name = "collections_split64", |
| hdrs = [ |
| "upb/collections/array_split64.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":collections", |
| ":port", |
| ], |
| ) |
| |
| # TODO(b/232091617): Once we can delete the deprecated forwarding headers |
| # (= everything in upb/) we can move this build target down into reflection/ |
| bootstrap_cc_library( |
| name = "reflection", |
| hdrs = [ |
| "upb/def.h", |
| "upb/def.hpp", |
| "upb/reflection.h", |
| "upb/reflection.hpp", |
| "upb/reflection/def.h", |
| "upb/reflection/def.hpp", |
| "upb/reflection/message.h", |
| "upb/reflection/message.hpp", |
| ], |
| bootstrap_deps = [":reflection_internal"], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":collections", |
| ":port", |
| ":upb", |
| ], |
| ) |
| |
| bootstrap_cc_library( |
| name = "reflection_internal", |
| srcs = [ |
| "upb/reflection/def_builder.c", |
| "upb/reflection/def_pool.c", |
| "upb/reflection/def_type.c", |
| "upb/reflection/desc_state.c", |
| "upb/reflection/enum_def.c", |
| "upb/reflection/enum_reserved_range.c", |
| "upb/reflection/enum_value_def.c", |
| "upb/reflection/extension_range.c", |
| "upb/reflection/field_def.c", |
| "upb/reflection/file_def.c", |
| "upb/reflection/message.c", |
| "upb/reflection/message_def.c", |
| "upb/reflection/message_reserved_range.c", |
| "upb/reflection/method_def.c", |
| "upb/reflection/oneof_def.c", |
| "upb/reflection/service_def.c", |
| ], |
| hdrs = [ |
| "upb/reflection/common.h", |
| "upb/reflection/def.h", |
| "upb/reflection/def.hpp", |
| "upb/reflection/def_builder_internal.h", |
| "upb/reflection/def_pool.h", |
| "upb/reflection/def_pool_internal.h", |
| "upb/reflection/def_type.h", |
| "upb/reflection/desc_state_internal.h", |
| "upb/reflection/enum_def.h", |
| "upb/reflection/enum_def_internal.h", |
| "upb/reflection/enum_reserved_range.h", |
| "upb/reflection/enum_reserved_range_internal.h", |
| "upb/reflection/enum_value_def.h", |
| "upb/reflection/enum_value_def_internal.h", |
| "upb/reflection/extension_range.h", |
| "upb/reflection/extension_range_internal.h", |
| "upb/reflection/field_def.h", |
| "upb/reflection/field_def_internal.h", |
| "upb/reflection/file_def.h", |
| "upb/reflection/file_def_internal.h", |
| "upb/reflection/message.h", |
| "upb/reflection/message.hpp", |
| "upb/reflection/message_def.h", |
| "upb/reflection/message_def_internal.h", |
| "upb/reflection/message_reserved_range.h", |
| "upb/reflection/message_reserved_range_internal.h", |
| "upb/reflection/method_def.h", |
| "upb/reflection/method_def_internal.h", |
| "upb/reflection/oneof_def.h", |
| "upb/reflection/oneof_def_internal.h", |
| "upb/reflection/service_def.h", |
| "upb/reflection/service_def_internal.h", |
| ], |
| bootstrap_deps = [":descriptor_upb_proto"], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":collections", |
| ":hash", |
| ":message_accessors", |
| ":mini_table_internal", |
| ":port", |
| ":upb", |
| ], |
| ) |
| |
| cc_library( |
| name = "textformat", |
| srcs = [ |
| "upb/text/encode.c", |
| ], |
| hdrs = [ |
| "upb/text/encode.h", |
| "upb/text_encode.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":collections_internal", |
| ":eps_copy_input_stream", |
| ":lex", |
| ":port", |
| ":reflection", |
| ":wire", |
| ":wire_reader", |
| ":wire_types", |
| ], |
| ) |
| |
| # TODO(b/232091617): Once we can delete the deprecated forwarding headers |
| # (= everything in upb/) we can move this build target down into json/ |
| cc_library( |
| name = "json", |
| srcs = [ |
| "upb/json/decode.c", |
| "upb/json/encode.c", |
| ], |
| hdrs = [ |
| "upb/json/decode.h", |
| "upb/json/encode.h", |
| "upb/json_decode.h", |
| "upb/json_encode.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":collections", |
| ":lex", |
| ":port", |
| ":reflection", |
| ":upb", |
| ], |
| ) |
| |
| # Tests ######################################################################## |
| |
| cc_test( |
| name = "def_builder_test", |
| srcs = [ |
| "upb/reflection/common.h", |
| "upb/reflection/def_builder_internal.h", |
| "upb/reflection/def_builder_test.cc", |
| "upb/reflection/def_type.h", |
| ], |
| deps = [ |
| ":descriptor_upb_proto", |
| ":hash", |
| ":port", |
| ":reflection", |
| ":reflection_internal", |
| ":upb", |
| "@com_google_absl//absl/strings", |
| "@com_google_googletest//:gtest_main", |
| ], |
| ) |
| |
| proto_library( |
| name = "json_test_proto", |
| testonly = 1, |
| srcs = ["upb/json/test.proto"], |
| deps = ["@com_google_protobuf//:struct_proto"], |
| ) |
| |
| upb_proto_library( |
| name = "json_test_upb_proto", |
| testonly = 1, |
| deps = [":json_test_proto"], |
| ) |
| |
| upb_proto_reflection_library( |
| name = "json_test_upb_proto_reflection", |
| testonly = 1, |
| deps = [":json_test_proto"], |
| ) |
| |
| cc_test( |
| name = "json_decode_test", |
| srcs = ["upb/json/decode_test.cc"], |
| deps = [ |
| ":json", |
| ":json_test_upb_proto", |
| ":json_test_upb_proto_reflection", |
| ":reflection", |
| ":struct_upb_proto", |
| ":upb", |
| "@com_google_googletest//:gtest_main", |
| ], |
| ) |
| |
| cc_test( |
| name = "json_encode_test", |
| srcs = ["upb/json/encode_test.cc"], |
| deps = [ |
| ":json", |
| ":json_test_upb_proto", |
| ":json_test_upb_proto_reflection", |
| ":reflection", |
| ":struct_upb_proto", |
| ":upb", |
| "@com_google_googletest//:gtest_main", |
| ], |
| ) |
| |
| cc_test( |
| name = "collections_test", |
| srcs = ["upb/collections/test.cc"], |
| deps = [ |
| ":collections", |
| ":upb", |
| "@com_google_googletest//:gtest_main", |
| ], |
| ) |
| |
| cc_test( |
| name = "message_test", |
| srcs = ["upb/message/test.cc"], |
| deps = [ |
| ":json", |
| ":message_test_upb_proto", |
| ":message_test_upb_proto_reflection", |
| ":reflection", |
| ":upb", |
| "//upb/test:fuzz_util", |
| "//upb/test:test_messages_proto3_upb_proto", |
| "@com_google_googletest//:gtest_main", |
| ], |
| ) |
| |
| proto_library( |
| name = "message_test_proto", |
| testonly = 1, |
| srcs = ["upb/message/test.proto"], |
| deps = ["@com_google_protobuf//src/google/protobuf:test_messages_proto3_proto"], |
| ) |
| |
| upb_proto_library( |
| name = "message_test_upb_proto", |
| testonly = 1, |
| deps = [":message_test_proto"], |
| ) |
| |
| upb_proto_reflection_library( |
| name = "message_test_upb_proto_reflection", |
| testonly = 1, |
| deps = [":message_test_proto"], |
| ) |
| |
| upb_proto_library( |
| name = "struct_upb_proto", |
| deps = ["@com_google_protobuf//:struct_proto"], |
| ) |
| |
| cc_test( |
| name = "atoi_test", |
| srcs = ["upb/lex/atoi_test.cc"], |
| copts = UPB_DEFAULT_CPPOPTS, |
| deps = [ |
| ":lex", |
| "@com_google_absl//absl/strings", |
| "@com_google_googletest//:gtest_main", |
| ], |
| ) |
| |
| cc_test( |
| name = "hash_test", |
| srcs = ["upb/hash/test.cc"], |
| copts = UPB_DEFAULT_CPPOPTS, |
| deps = [ |
| ":hash", |
| ":port", |
| ":upb", |
| "@com_google_googletest//:gtest_main", |
| ], |
| ) |
| |
| # Internal C/C++ libraries ##################################################### |
| |
| cc_library( |
| name = "mem", |
| hdrs = [ |
| "upb/mem/alloc.h", |
| "upb/mem/arena.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//:__subpackages__"], |
| deps = [ |
| ":mem_internal", |
| ":port", |
| ], |
| ) |
| |
| cc_test( |
| name = "arena_test", |
| srcs = ["upb/mem/arena_test.cc"], |
| deps = [ |
| ":port", |
| ":upb", |
| "@com_google_absl//absl/random", |
| "@com_google_absl//absl/random:distributions", |
| "@com_google_absl//absl/synchronization", |
| "@com_google_googletest//:gtest_main", |
| ], |
| ) |
| |
| cc_library( |
| name = "mem_internal", |
| srcs = [ |
| "upb/mem/alloc.c", |
| "upb/mem/arena.c", |
| ], |
| hdrs = [ |
| "upb/mem/alloc.h", |
| "upb/mem/arena.h", |
| "upb/mem/arena_internal.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//:__subpackages__"], |
| deps = [":port"], |
| ) |
| |
| cc_library( |
| name = "wire", |
| hdrs = [ |
| "upb/wire/decode.h", |
| "upb/wire/encode.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":mem", |
| ":message_internal", |
| ":mini_table_internal", |
| ":port", |
| ":wire_internal", |
| ], |
| ) |
| |
| cc_library( |
| name = "wire_internal", |
| srcs = [ |
| "upb/wire/decode.c", |
| "upb/wire/decode_fast.c", |
| "upb/wire/encode.c", |
| ], |
| hdrs = [ |
| "upb/wire/common.h", |
| "upb/wire/common_internal.h", |
| "upb/wire/decode.h", |
| "upb/wire/decode_fast.h", |
| "upb/wire/decode_internal.h", |
| "upb/wire/encode.h", |
| "upb/wire/swap_internal.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//:__subpackages__"], |
| deps = [ |
| ":base", |
| ":collections_internal", |
| ":eps_copy_input_stream", |
| ":hash", |
| ":mem_internal", |
| ":message_internal", |
| ":mini_table_internal", |
| ":port", |
| ":wire_reader", |
| ":wire_types", |
| "@utf8_range", |
| ], |
| ) |
| |
| cc_library( |
| name = "wire_types", |
| hdrs = ["upb/wire/types.h"], |
| visibility = ["//visibility:public"], |
| ) |
| |
| cc_library( |
| name = "eps_copy_input_stream", |
| srcs = ["upb/wire/eps_copy_input_stream.c"], |
| hdrs = ["upb/wire/eps_copy_input_stream.h"], |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":mem", |
| ":port", |
| ], |
| ) |
| |
| cc_library( |
| name = "wire_reader", |
| srcs = [ |
| "upb/wire/reader.c", |
| "upb/wire/swap_internal.h", |
| ], |
| hdrs = ["upb/wire/reader.h"], |
| visibility = ["//visibility:public"], |
| deps = [ |
| ":eps_copy_input_stream", |
| ":port", |
| ":wire_types", |
| ], |
| ) |
| |
| cc_test( |
| name = "eps_copy_input_stream_test", |
| srcs = ["upb/wire/eps_copy_input_stream_test.cc"], |
| deps = [ |
| ":eps_copy_input_stream", |
| ":upb", |
| "@com_google_googletest//:gtest_main", |
| ], |
| ) |
| |
| cc_library( |
| name = "hash", |
| srcs = [ |
| "upb/hash/common.c", |
| ], |
| hdrs = [ |
| "upb/hash/common.h", |
| "upb/hash/int_table.h", |
| "upb/hash/str_table.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//:__subpackages__"], |
| deps = [ |
| ":base", |
| ":mem", |
| ":port", |
| ], |
| ) |
| |
| cc_library( |
| name = "lex", |
| srcs = [ |
| "upb/lex/atoi.c", |
| "upb/lex/round_trip.c", |
| "upb/lex/strtod.c", |
| "upb/lex/unicode.c", |
| ], |
| hdrs = [ |
| "upb/lex/atoi.h", |
| "upb/lex/round_trip.h", |
| "upb/lex/strtod.h", |
| "upb/lex/unicode.h", |
| ], |
| copts = UPB_DEFAULT_COPTS, |
| visibility = ["//:__subpackages__"], |
| deps = [":port"], |
| ) |
| |
| cc_binary( |
| name = "libupb.so", |
| srcs = ["upb/upb_so.c"], |
| copts = UPB_DEFAULT_COPTS + ["-DUPB_BUILD_API"], |
| linkshared = 1, |
| linkstatic = 1, |
| visibility = ["//visibility:public"], |
| deps = [ |
| "//:collections", |
| "//:collections_split64", |
| "//:mem", |
| "//:message", |
| "//:message_accessors", |
| "//:message_split64", |
| "//:mini_table", |
| "//:port", |
| ], |
| ) |
| |
| # Amalgamation ################################################################# |
| |
| # begin:github_only |
| |
| upb_amalgamation( |
| name = "gen_amalgamation", |
| outs = [ |
| "upb.c", |
| "upb.h", |
| ], |
| libs = [ |
| ":base", |
| ":collections_internal", |
| ":descriptor_upb_proto", |
| ":eps_copy_input_stream", |
| ":fastdecode", |
| ":hash", |
| ":lex", |
| ":mem_internal", |
| ":mini_table_internal", |
| ":message_accessors", |
| ":message_internal", |
| ":port", |
| ":reflection", |
| ":reflection_internal", |
| ":upb", |
| ":wire_internal", |
| ":wire_reader", |
| ":wire_types", |
| ], |
| strip_import_prefix = ["src"], |
| ) |
| |
| cc_library( |
| name = "amalgamation", |
| srcs = ["upb.c"], |
| hdrs = ["upb.h"], |
| copts = UPB_DEFAULT_COPTS, |
| deps = ["@utf8_range"], |
| ) |
| |
| upb_amalgamation( |
| name = "gen_php_amalgamation", |
| outs = [ |
| "php-upb.c", |
| "php-upb.h", |
| ], |
| libs = [ |
| ":base", |
| ":collections_internal", |
| ":descriptor_upb_proto", |
| ":descriptor_upb_proto_reflection", |
| ":eps_copy_input_stream", |
| ":fastdecode", |
| ":hash", |
| ":json", |
| ":lex", |
| ":mem_internal", |
| ":message_accessors", |
| ":message_internal", |
| ":mini_table_internal", |
| ":port", |
| ":reflection", |
| ":reflection_internal", |
| ":upb", |
| ":wire_internal", |
| ":wire_reader", |
| ":wire_types", |
| ], |
| prefix = "php-", |
| strip_import_prefix = ["src"], |
| visibility = ["@com_google_protobuf//php:__subpackages__"], |
| ) |
| |
| cc_library( |
| name = "php_amalgamation", |
| srcs = ["php-upb.c"], |
| hdrs = ["php-upb.h"], |
| copts = UPB_DEFAULT_COPTS, |
| deps = ["@utf8_range"], |
| ) |
| |
| upb_amalgamation( |
| name = "gen_ruby_amalgamation", |
| outs = [ |
| "ruby-upb.c", |
| "ruby-upb.h", |
| ], |
| libs = [ |
| ":base", |
| ":collections_internal", |
| ":descriptor_upb_proto", |
| ":eps_copy_input_stream", |
| ":fastdecode", |
| ":hash", |
| ":json", |
| ":lex", |
| ":mem_internal", |
| ":message_accessors", |
| ":message_internal", |
| ":mini_table_internal", |
| ":port", |
| ":reflection", |
| ":reflection_internal", |
| ":upb", |
| ":wire_internal", |
| ":wire_reader", |
| ":wire_types", |
| ], |
| prefix = "ruby-", |
| strip_import_prefix = ["src"], |
| visibility = ["@com_google_protobuf//ruby:__subpackages__"], |
| ) |
| |
| cc_library( |
| name = "ruby_amalgamation", |
| srcs = ["ruby-upb.c"], |
| hdrs = ["ruby-upb.h"], |
| copts = UPB_DEFAULT_COPTS, |
| deps = ["@utf8_range"], |
| ) |
| |
| exports_files( |
| [ |
| "third_party/lunit/console.lua", |
| "third_party/lunit/lunit.lua", |
| ], |
| visibility = ["//lua:__pkg__"], |
| ) |
| |
| filegroup( |
| name = "cmake_files", |
| srcs = glob([ |
| "upb/**/*", |
| "third_party/**/*", |
| ]), |
| visibility = ["//cmake:__pkg__"], |
| ) |
| |
| |
| pkg_files( |
| name = "upb_source_files", |
| srcs = glob( |
| [ |
| "upb/**/*.c", |
| "upb/**/*.h", |
| "upb/**/*.hpp", |
| "upb/**/*.inc", |
| ], |
| exclude = ["upb/**/conformance_upb.c"], |
| ), |
| strip_prefix = "", |
| visibility = ["//python/dist:__pkg__"], |
| ) |
| |
| # end:github_only |
| |
| # begin:google_only |
| # |
| # py_binary( |
| # name = "update_check_runs", |
| # srcs = ["update_check_runs.py"], |
| # main = "update_check_runs.py", |
| # deps = [ |
| # "//third_party/py/absl:app", |
| # "//third_party/py/absl/flags", |
| # ], |
| # ) |
| # |
| # kt_native_interop_hint( |
| # name = "upb_kotlin_native_hint", |
| # compatible_with = ["//buildenv/target:non_prod"], |
| # headers_to_exclude = glob([ |
| # "**/*.hpp", |
| # ]), |
| # no_string_conversion = ["upb_MiniTable_Build"], |
| # strict_enums = ["upb_FieldType"], |
| # ) |
| # |
| # kt_native_interop_hint( |
| # name = "suppress_kotlin_interop", |
| # compatible_with = ["//buildenv/target:non_prod"], |
| # suppressed = True, |
| # ) |
| # |
| # end:google_only |