mirror of
https://github.com/protocolbuffers/protobuf
synced 2026-08-26 02:23:14 -04:00
707 lines
16 KiB
Text
707 lines
16 KiB
Text
# 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_skylib//rules:common_settings.bzl", "bool_flag")
|
|
load("@rules_cc//cc:cc_test.bzl", "cc_test")
|
|
load("@rules_cc//cc:defs.bzl", "cc_library")
|
|
load("//bazel:proto_library.bzl", "proto_library")
|
|
load("//upb/bazel:copts.bzl", "UPB_DEFAULT_COPTS", "UPB_DEFAULT_CPPOPTS", "UPB_DEFAULT_FEATURES")
|
|
load(
|
|
"//upb/bazel:upb_minitable_proto_library.bzl",
|
|
"upb_minitable_proto_library",
|
|
)
|
|
load(
|
|
"//upb/bazel:upb_proto_library.bzl",
|
|
"upb_c_proto_library",
|
|
"upb_proto_reflection_library",
|
|
)
|
|
|
|
package(default_applicable_licenses = ["//:license"])
|
|
|
|
cc_library(
|
|
name = "message",
|
|
srcs = [
|
|
"accessors.c",
|
|
"array.c",
|
|
"compat.c",
|
|
"map.c",
|
|
"map_sorter.c",
|
|
"message.c",
|
|
],
|
|
hdrs = [
|
|
"accessors.h",
|
|
"array.h",
|
|
"compat.h",
|
|
"map.h",
|
|
"map_gencode_util.h",
|
|
"message.h",
|
|
"value.h",
|
|
],
|
|
copts = UPB_DEFAULT_COPTS,
|
|
features = UPB_DEFAULT_FEATURES,
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":internal",
|
|
":message_unknowns",
|
|
":types",
|
|
"//upb/base",
|
|
"//upb/base:internal",
|
|
"//upb/hash",
|
|
"//upb/mem",
|
|
"//upb/mini_table",
|
|
"//upb/mini_table:internal",
|
|
"//upb/port",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "message_unknowns",
|
|
srcs = [
|
|
"unknown_fields.c",
|
|
],
|
|
hdrs = [
|
|
"unknown_fields.h",
|
|
],
|
|
copts = UPB_DEFAULT_COPTS,
|
|
features = UPB_DEFAULT_FEATURES,
|
|
visibility = [
|
|
"//hpb/internal:__pkg__",
|
|
"//pkg:__pkg__",
|
|
"//python:__pkg__",
|
|
"//third_party/cel/c/internal:__pkg__",
|
|
"//third_party/upb/wasm_abi/upb:__pkg__",
|
|
"//upb:__pkg__",
|
|
"//upb/wire:__pkg__",
|
|
"//video/youtube/utils/elements/client/component_type:__pkg__",
|
|
"//video/youtube/utils/elements/client/component_type/subscription_processors:__pkg__",
|
|
"//video/youtube/utils/elements/data_layer:__pkg__",
|
|
"//video/youtube/utils/elements/javascript/client/proto/upb/native:__pkg__",
|
|
"//video/youtube/utils/elements/upb/crosslang:__pkg__",
|
|
],
|
|
deps = [
|
|
":internal",
|
|
":types",
|
|
"//upb/base",
|
|
"//upb/mem",
|
|
"//upb/mem:internal",
|
|
"//upb/mini_table",
|
|
"//upb/port",
|
|
"//upb/wire:eps_copy_input_stream",
|
|
"//upb/wire:reader",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "message_cc",
|
|
hdrs = [
|
|
"accessors.hpp",
|
|
],
|
|
copts = UPB_DEFAULT_CPPOPTS,
|
|
features = UPB_DEFAULT_FEATURES,
|
|
visibility = ["//upb:__subpackages__"],
|
|
deps = [
|
|
":message",
|
|
"//upb/base",
|
|
"//upb/mini_table",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "message_unknowns_testonly",
|
|
testonly = 1,
|
|
hdrs = ["unknown_fields_testonly.h"],
|
|
copts = UPB_DEFAULT_COPTS,
|
|
features = UPB_DEFAULT_FEATURES,
|
|
visibility = ["//upb:friends"],
|
|
deps = [
|
|
":internal",
|
|
":message",
|
|
"//upb/mem",
|
|
"//upb/mini_table",
|
|
"//upb/port",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "internal",
|
|
srcs = [
|
|
"internal/extension.c",
|
|
"internal/message.c",
|
|
"value.h",
|
|
],
|
|
hdrs = [
|
|
"internal/accessors.h",
|
|
"internal/array.h",
|
|
"internal/extension.h",
|
|
"internal/map.h",
|
|
"internal/map_sorter.h",
|
|
"internal/message.h",
|
|
],
|
|
copts = UPB_DEFAULT_COPTS,
|
|
features = UPB_DEFAULT_FEATURES,
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":types",
|
|
"//upb/base",
|
|
"//upb/base:internal",
|
|
"//upb/hash",
|
|
"//upb/mem",
|
|
"//upb/mini_table",
|
|
"//upb/mini_table:internal",
|
|
"//upb/port",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "iterator",
|
|
srcs = [
|
|
"internal/iterator.c",
|
|
],
|
|
hdrs = [
|
|
"internal/iterator.h",
|
|
],
|
|
copts = UPB_DEFAULT_COPTS,
|
|
features = UPB_DEFAULT_FEATURES,
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":internal",
|
|
":message",
|
|
"//upb/mini_table",
|
|
"//upb/port",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "compare",
|
|
srcs = [
|
|
"compare.c",
|
|
"internal/compare_unknown.c",
|
|
],
|
|
hdrs = [
|
|
"compare.h",
|
|
"internal/compare_unknown.h",
|
|
],
|
|
copts = UPB_DEFAULT_COPTS,
|
|
features = UPB_DEFAULT_FEATURES,
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":internal",
|
|
":iterator",
|
|
":message",
|
|
":message_unknowns",
|
|
"//upb/base",
|
|
"//upb/mem",
|
|
"//upb/mini_table",
|
|
"//upb/mini_table:internal",
|
|
"//upb/port",
|
|
"//upb/wire:back_alloc",
|
|
"//upb/wire:encoder",
|
|
"//upb/wire:eps_copy_input_stream",
|
|
"//upb/wire:reader",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "copy",
|
|
srcs = [
|
|
"copy.c",
|
|
"merge.c",
|
|
],
|
|
hdrs = [
|
|
"copy.h",
|
|
"merge.h",
|
|
],
|
|
copts = UPB_DEFAULT_COPTS,
|
|
features = UPB_DEFAULT_FEATURES,
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":internal",
|
|
":message",
|
|
":types",
|
|
"//upb/base",
|
|
"//upb/base:internal",
|
|
"//upb/mem",
|
|
"//upb/mini_table",
|
|
"//upb/mini_table:internal",
|
|
"//upb/port",
|
|
"//upb/wire",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "promote",
|
|
srcs = [
|
|
"promote.c",
|
|
],
|
|
hdrs = [
|
|
"promote.h",
|
|
],
|
|
copts = UPB_DEFAULT_COPTS,
|
|
features = UPB_DEFAULT_FEATURES,
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":copy",
|
|
":internal",
|
|
":message",
|
|
":message_unknowns",
|
|
"//upb/base",
|
|
"//upb/mem",
|
|
"//upb/mini_table",
|
|
"//upb/port",
|
|
"//upb/wire",
|
|
"//upb/wire:encoder",
|
|
"//upb/wire:eps_copy_input_stream",
|
|
"//upb/wire:reader",
|
|
],
|
|
)
|
|
|
|
# Experimental API, subject to change.
|
|
cc_library(
|
|
name = "convert",
|
|
srcs = [
|
|
"convert.c",
|
|
],
|
|
hdrs = [
|
|
"convert.h",
|
|
],
|
|
copts = UPB_DEFAULT_COPTS,
|
|
visibility = [
|
|
"//upb:__pkg__",
|
|
"//upb:friends",
|
|
],
|
|
deps = [
|
|
":compare",
|
|
":internal",
|
|
":message",
|
|
"//upb/base",
|
|
"//upb/mem",
|
|
"//upb/mini_table",
|
|
"//upb/mini_table:internal",
|
|
"//upb/port",
|
|
"//upb/wire:back_alloc",
|
|
"//upb/wire:decoder",
|
|
"//upb/wire:encoder",
|
|
"//upb/wire:eps_copy_input_stream",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "convert_test",
|
|
srcs = ["convert_test.cc"],
|
|
deps = [
|
|
":convert",
|
|
":convert_test_upb_minitable_proto",
|
|
":convert_test_upb_proto",
|
|
":internal",
|
|
":message",
|
|
":message_test_upb_minitable_proto",
|
|
":message_test_upb_proto",
|
|
":promote",
|
|
"//upb/base",
|
|
"//upb/mem",
|
|
"//upb/mini_table",
|
|
"//upb/port",
|
|
"//upb/test:test_messages_proto2_upb_proto",
|
|
"//upb/test:test_messages_proto3_upb_minitable",
|
|
"//upb/test:test_messages_proto3_upb_proto",
|
|
"//upb/test:test_upb_proto",
|
|
"//upb/wire",
|
|
"@googletest//:gtest",
|
|
"@googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "merge_test",
|
|
srcs = ["merge_test.cc"],
|
|
deps = [
|
|
":copy",
|
|
":internal",
|
|
":message",
|
|
"//upb/base",
|
|
"//upb/mem",
|
|
"//upb/mini_table",
|
|
"//upb/port",
|
|
"//upb/test:test_messages_proto2_upb_minitable",
|
|
"//upb/test:test_messages_proto2_upb_proto",
|
|
"//upb/test:test_upb_proto",
|
|
"//upb/wire",
|
|
"@googletest//:gtest",
|
|
"@googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "split64",
|
|
hdrs = [
|
|
"accessors_split64.h",
|
|
],
|
|
copts = UPB_DEFAULT_COPTS,
|
|
features = UPB_DEFAULT_FEATURES,
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":message",
|
|
"//upb/mem",
|
|
"//upb/mini_table",
|
|
"//upb/port",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "types",
|
|
hdrs = [
|
|
"internal/map_entry.h",
|
|
"internal/types.h",
|
|
],
|
|
copts = UPB_DEFAULT_COPTS,
|
|
features = UPB_DEFAULT_FEATURES,
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//upb/base",
|
|
"//upb/hash",
|
|
"//upb/port",
|
|
],
|
|
)
|
|
|
|
proto_library(
|
|
name = "message_test_proto",
|
|
testonly = 1,
|
|
srcs = ["test.proto"],
|
|
deps = ["//src/google/protobuf:test_messages_proto3_proto"],
|
|
)
|
|
|
|
upb_minitable_proto_library(
|
|
name = "message_test_upb_minitable_proto",
|
|
testonly = 1,
|
|
visibility = ["//upb:__subpackages__"],
|
|
deps = [":message_test_proto"],
|
|
)
|
|
|
|
upb_c_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"],
|
|
)
|
|
|
|
cc_test(
|
|
name = "accessors_test",
|
|
srcs = ["accessors_test.cc"],
|
|
deps = [
|
|
":message",
|
|
"//src/google/protobuf",
|
|
"//upb/base",
|
|
"//upb/mem",
|
|
"//upb/mini_descriptor",
|
|
"//upb/mini_descriptor:internal",
|
|
"//upb/mini_table",
|
|
"//upb/port",
|
|
"//upb/test:test_messages_proto2_upb_minitable",
|
|
"//upb/test:test_messages_proto2_upb_proto",
|
|
"//upb/test:test_messages_proto3_upb_minitable",
|
|
"//upb/test:test_messages_proto3_upb_proto",
|
|
"//upb/test:test_upb_proto",
|
|
"//upb/wire",
|
|
"@abseil-cpp//absl/container:flat_hash_set",
|
|
"@googletest//:gtest",
|
|
"@googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "array_test",
|
|
srcs = ["array_test.cc"],
|
|
deps = [
|
|
":message",
|
|
"//upb/base",
|
|
"//upb/mem",
|
|
"@googletest//:gtest",
|
|
"@googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "compare_unknown_test",
|
|
srcs = ["internal/compare_unknown_test.cc"],
|
|
deps = [
|
|
":compare",
|
|
":internal",
|
|
":message",
|
|
":message_test_upb_minitable_proto",
|
|
":message_test_upb_proto",
|
|
":message_unknowns",
|
|
"//upb/base",
|
|
"//upb/base:internal",
|
|
"//upb/mem",
|
|
"//upb/mini_descriptor",
|
|
"//upb/mini_descriptor:internal",
|
|
"//upb/mini_table",
|
|
"//upb/port",
|
|
"//upb/test:test_messages_proto2_upb_proto",
|
|
"//upb/test:test_proto_upb_minitable",
|
|
"//upb/test:test_upb_proto",
|
|
"//upb/wire",
|
|
"//upb/wire:reader",
|
|
"//upb/wire/test_util:wire_message",
|
|
"@googletest//:gtest",
|
|
"@googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "copy_test",
|
|
srcs = ["copy_test.cc"],
|
|
deps = [
|
|
":copy",
|
|
":internal",
|
|
":message",
|
|
":message_unknowns",
|
|
"//src/google/protobuf",
|
|
"//upb/base",
|
|
"//upb/mem",
|
|
"//upb/mini_table",
|
|
"//upb/port",
|
|
"//upb/test:test_messages_proto2_upb_minitable",
|
|
"//upb/test:test_messages_proto2_upb_proto",
|
|
"//upb/test:test_proto_upb_minitable",
|
|
"//upb/test:test_upb_proto",
|
|
"//upb/wire",
|
|
"@abseil-cpp//absl/container:flat_hash_set",
|
|
"@googletest//:gtest",
|
|
"@googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "map_test",
|
|
srcs = ["map_test.cc"],
|
|
deps = [
|
|
":message",
|
|
"//upb/base",
|
|
"//upb/mem",
|
|
"@googletest//:gtest",
|
|
"@googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "promote_test",
|
|
srcs = ["promote_test.cc"],
|
|
deps = [
|
|
":copy",
|
|
":internal",
|
|
":message",
|
|
":message_unknowns",
|
|
":promote",
|
|
"//src/google/protobuf",
|
|
"//upb/base",
|
|
"//upb/mem",
|
|
"//upb/mini_descriptor",
|
|
"//upb/mini_descriptor:internal",
|
|
"//upb/mini_table",
|
|
"//upb/port",
|
|
"//upb/test:test_messages_proto2_upb_proto",
|
|
"//upb/test:test_messages_proto3_upb_proto",
|
|
"//upb/test:test_proto_upb_minitable",
|
|
"//upb/test:test_upb_proto",
|
|
"//upb/wire",
|
|
"@abseil-cpp//absl/container:flat_hash_set",
|
|
"@abseil-cpp//absl/strings:string_view",
|
|
"@googletest//:gtest",
|
|
"@googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "unknown_fields_test",
|
|
srcs = ["unknown_fields_test.cc"],
|
|
deps = [
|
|
":internal",
|
|
":message",
|
|
":message_unknowns",
|
|
"//upb/base",
|
|
"//upb/mem",
|
|
"//upb/mini_table",
|
|
"//upb/port",
|
|
"//upb/test:test_proto_upb_minitable",
|
|
"//upb/test:test_upb_proto",
|
|
"//upb/wire",
|
|
"@googletest//:gtest",
|
|
"@googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
bool_flag(
|
|
name = "fuzz_dump_minitable",
|
|
build_setting_default = False,
|
|
)
|
|
|
|
config_setting(
|
|
name = "fuzz_dump_minitable_enabled",
|
|
flag_values = {":fuzz_dump_minitable": "True"},
|
|
)
|
|
|
|
# This test doesn't directly include any files from this subdir so it probably
|
|
# should live elsewhere.
|
|
cc_test(
|
|
name = "test",
|
|
srcs = ["test.cc"],
|
|
args = ["--fuzztest_stack_limit_kb=256"],
|
|
copts = UPB_DEFAULT_CPPOPTS + select({
|
|
":fuzz_dump_minitable_enabled": ["-DUPB_FUZZ_DUMP_MINITABLE"],
|
|
"//conditions:default": [],
|
|
}),
|
|
features = UPB_DEFAULT_FEATURES,
|
|
deps = [
|
|
":compare",
|
|
":convert",
|
|
":internal",
|
|
":message",
|
|
":message_test_upb_minitable_proto",
|
|
":message_test_upb_proto",
|
|
":message_test_upb_proto_reflection",
|
|
":message_unknowns",
|
|
"//upb/base",
|
|
"//upb/json",
|
|
"//upb/mem",
|
|
"//upb/mini_descriptor",
|
|
"//upb/mini_table",
|
|
"//upb/mini_table:debug_string",
|
|
"//upb/mini_table:internal",
|
|
"//upb/port",
|
|
"//upb/reflection",
|
|
"//upb/reflection:internal",
|
|
"//upb/reflection:internal_cc",
|
|
"//upb/reflection:reflection_cc",
|
|
"//upb/test:fuzz_util",
|
|
"//upb/test:test_messages_proto3_upb_proto",
|
|
"//upb/text:debug",
|
|
"//upb/wire",
|
|
"//upb/wire:eps_copy_input_stream",
|
|
"//upb/wire:eps_copy_input_stream_internal",
|
|
"//upb/wire:reader",
|
|
"//upb/wire:writer",
|
|
"@abseil-cpp//absl/cleanup",
|
|
"@abseil-cpp//absl/numeric:bits",
|
|
"@abseil-cpp//absl/strings",
|
|
"@googletest//:gtest",
|
|
"@googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
proto_library(
|
|
name = "utf8_test_proto",
|
|
testonly = 1,
|
|
srcs = ["utf8_test.proto"],
|
|
)
|
|
|
|
proto_library(
|
|
name = "utf8_test_proto2_proto",
|
|
testonly = 1,
|
|
srcs = ["utf8_test_proto2.proto"],
|
|
)
|
|
|
|
upb_minitable_proto_library(
|
|
name = "utf8_test_upb_minitable_proto",
|
|
testonly = 1,
|
|
deps = [":utf8_test_proto"],
|
|
)
|
|
|
|
upb_minitable_proto_library(
|
|
name = "utf8_test_proto2_upb_minitable_proto",
|
|
testonly = 1,
|
|
deps = [":utf8_test_proto2_proto"],
|
|
)
|
|
|
|
upb_c_proto_library(
|
|
name = "utf8_test_upb_proto",
|
|
testonly = 1,
|
|
deps = [":utf8_test_proto"],
|
|
)
|
|
|
|
upb_c_proto_library(
|
|
name = "utf8_test_proto2_upb_proto",
|
|
testonly = 1,
|
|
deps = [":utf8_test_proto2_proto"],
|
|
)
|
|
|
|
cc_test(
|
|
name = "utf8_test",
|
|
srcs = ["utf8_test.cc"],
|
|
deps = [
|
|
":utf8_test_proto2_upb_minitable_proto",
|
|
":utf8_test_proto2_upb_proto",
|
|
":utf8_test_upb_minitable_proto",
|
|
":utf8_test_upb_proto",
|
|
"//upb/base",
|
|
"//upb/mem",
|
|
"//upb/wire",
|
|
"@googletest//:gtest",
|
|
"@googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "source_files",
|
|
srcs = glob(
|
|
[
|
|
"**/*.c",
|
|
"**/*.h",
|
|
],
|
|
),
|
|
visibility = [
|
|
"//python/dist:__pkg__",
|
|
"//upb/cmake:__pkg__",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "test_srcs",
|
|
srcs = glob(
|
|
[
|
|
"**/*test.cc",
|
|
],
|
|
exclude = [
|
|
"promote_test.cc",
|
|
"convert_fuzz_test.cc",
|
|
],
|
|
),
|
|
visibility = ["//upb:__pkg__"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "test_protos",
|
|
srcs = glob(
|
|
[
|
|
"**/*.proto",
|
|
],
|
|
),
|
|
visibility = ["//upb:__pkg__"],
|
|
)
|
|
|
|
proto_library(
|
|
name = "convert_test_proto",
|
|
testonly = 1,
|
|
srcs = ["convert_test.proto"],
|
|
)
|
|
|
|
upb_minitable_proto_library(
|
|
name = "convert_test_upb_minitable_proto",
|
|
testonly = 1,
|
|
deps = [":convert_test_proto"],
|
|
)
|
|
|
|
upb_c_proto_library(
|
|
name = "convert_test_upb_proto",
|
|
testonly = 1,
|
|
deps = [":convert_test_proto"],
|
|
)
|