parent
f5621a975f
commit
d90f74d47b
7 changed files with 401 additions and 298 deletions
@ -0,0 +1,332 @@ |
||||
# 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") |
||||
load( |
||||
"//bazel:upb_proto_library.bzl", |
||||
"upb_proto_library", |
||||
"upb_proto_reflection_library", |
||||
) |
||||
|
||||
cc_library( |
||||
name = "accessors", |
||||
srcs = [ |
||||
"accessors.c", |
||||
"internal/accessors.h", |
||||
], |
||||
hdrs = [ |
||||
"accessors.h", |
||||
], |
||||
copts = UPB_DEFAULT_COPTS, |
||||
visibility = ["//visibility:public"], |
||||
deps = [ |
||||
":internal", |
||||
"//:base", |
||||
"//:collections_internal", |
||||
"//:eps_copy_input_stream", |
||||
"//:mini_table", |
||||
"//:mini_table_internal", |
||||
"//:port", |
||||
"//:wire", |
||||
"//:wire_internal", |
||||
"//:wire_reader", |
||||
], |
||||
) |
||||
|
||||
cc_library( |
||||
name = "accessors_internal", |
||||
hdrs = [ |
||||
"internal/accessors.h", |
||||
], |
||||
copts = UPB_DEFAULT_COPTS, |
||||
visibility = ["//visibility:public"], |
||||
deps = [ |
||||
":internal", |
||||
"//:collections_internal", |
||||
"//:mini_table_internal", |
||||
"//:port", |
||||
], |
||||
) |
||||
|
||||
cc_library( |
||||
name = "copy", |
||||
srcs = [ |
||||
"copy.c", |
||||
], |
||||
hdrs = [ |
||||
"copy.h", |
||||
], |
||||
copts = UPB_DEFAULT_COPTS, |
||||
visibility = ["//visibility:public"], |
||||
deps = [ |
||||
":accessors", |
||||
":internal", |
||||
":typedef", |
||||
"//:base", |
||||
"//:collections_internal", |
||||
"//:mem", |
||||
"//:mini_table", |
||||
"//:mini_table_internal", |
||||
"//:port", |
||||
], |
||||
) |
||||
|
||||
cc_library( |
||||
name = "internal", |
||||
srcs = [ |
||||
"message.c", |
||||
], |
||||
hdrs = [ |
||||
"internal/extension.h", |
||||
"internal/message.h", |
||||
"message.h", |
||||
], |
||||
copts = UPB_DEFAULT_COPTS, |
||||
visibility = ["//visibility:public"], |
||||
deps = [ |
||||
"//:base", |
||||
"//:base_internal", |
||||
"//:hash", |
||||
"//:mem", |
||||
"//:mini_table", |
||||
"//:port", |
||||
], |
||||
) |
||||
|
||||
cc_library( |
||||
name = "message", |
||||
hdrs = [ |
||||
"message.h", |
||||
], |
||||
copts = UPB_DEFAULT_COPTS, |
||||
visibility = ["//visibility:public"], |
||||
deps = [ |
||||
":internal", |
||||
"//:base", |
||||
"//:mem", |
||||
"//:mini_table", |
||||
"//:port", |
||||
], |
||||
) |
||||
|
||||
cc_library( |
||||
name = "promote", |
||||
srcs = [ |
||||
"promote.c", |
||||
], |
||||
hdrs = [ |
||||
"promote.h", |
||||
], |
||||
copts = UPB_DEFAULT_COPTS, |
||||
visibility = ["//visibility:public"], |
||||
deps = [ |
||||
":accessors", |
||||
":internal", |
||||
":typedef", |
||||
"//:base", |
||||
"//:collections_internal", |
||||
"//:eps_copy_input_stream", |
||||
"//:hash", |
||||
"//:mem", |
||||
"//:mini_table", |
||||
"//:port", |
||||
"//:wire", |
||||
"//:wire_internal", |
||||
"//:wire_reader", |
||||
], |
||||
) |
||||
|
||||
cc_library( |
||||
name = "rep_internal", |
||||
hdrs = [ |
||||
"internal/map_entry.h", |
||||
], |
||||
copts = UPB_DEFAULT_COPTS, |
||||
visibility = ["//visibility:public"], |
||||
deps = [ |
||||
"//:base", |
||||
"//:hash", |
||||
], |
||||
) |
||||
|
||||
cc_library( |
||||
name = "split64", |
||||
hdrs = [ |
||||
"accessors_split64.h", |
||||
], |
||||
copts = UPB_DEFAULT_COPTS, |
||||
visibility = ["//visibility:public"], |
||||
deps = [ |
||||
":accessors", |
||||
"//:port", |
||||
], |
||||
) |
||||
|
||||
cc_library( |
||||
name = "tagged_ptr", |
||||
hdrs = ["tagged_ptr.h"], |
||||
copts = UPB_DEFAULT_COPTS, |
||||
visibility = ["//visibility:public"], |
||||
deps = [ |
||||
":typedef", |
||||
"//:port", |
||||
], |
||||
) |
||||
|
||||
cc_library( |
||||
name = "typedef", |
||||
hdrs = [ |
||||
"typedef.h", |
||||
], |
||||
copts = UPB_DEFAULT_COPTS, |
||||
visibility = ["//visibility:public"], |
||||
deps = [], |
||||
) |
||||
|
||||
# TODO(salo): Move these proto library targets to //third_party/protobuf/BUILD |
||||
# after we have the monorepo. |
||||
proto_library( |
||||
name = "message_test_proto", |
||||
testonly = 1, |
||||
srcs = ["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"], |
||||
) |
||||
|
||||
cc_test( |
||||
name = "accessors_test", |
||||
srcs = ["accessors_test.cc"], |
||||
deps = [ |
||||
":accessors", |
||||
"//:base", |
||||
"//:collections", |
||||
"//:mini_descriptor", |
||||
"//:mini_descriptor_encode_internal", |
||||
"//:mini_descriptor_internal", |
||||
"//:mini_table", |
||||
"//:port", |
||||
"//:upb", |
||||
"//:wire", |
||||
"//:wire_internal", |
||||
"//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 = "copy_test", |
||||
srcs = ["copy_test.cc"], |
||||
deps = [ |
||||
":accessors", |
||||
":copy", |
||||
":internal", |
||||
"//:base", |
||||
"//:collections", |
||||
"//:mem", |
||||
"//:mini_table", |
||||
"//:upb", |
||||
"//:wire", |
||||
"//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 = "promote_test", |
||||
srcs = ["promote_test.cc"], |
||||
deps = [ |
||||
":accessors", |
||||
":copy", |
||||
":promote", |
||||
"//:base", |
||||
"//:collections", |
||||
"//:mini_descriptor_encode_internal", |
||||
"//:mini_descriptor_internal", |
||||
"//:mini_table", |
||||
"//:port", |
||||
"//:upb", |
||||
"//:wire", |
||||
"//:wire_internal", |
||||
"//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", |
||||
], |
||||
) |
||||
|
||||
# This test doesn't directly include any files from this subdir so it probably |
||||
# should live elsewhere. |
||||
cc_test( |
||||
name = "test", |
||||
srcs = ["test.cc"], |
||||
deps = [ |
||||
":message_test_upb_proto", |
||||
":message_test_upb_proto_reflection", |
||||
"//:json", |
||||
"//:reflection", |
||||
"//:upb", |
||||
"//:wire", |
||||
"//upb/test:fuzz_util", |
||||
"//upb/test:test_messages_proto3_upb_proto", |
||||
"@com_google_googletest//:gtest_main", |
||||
], |
||||
) |
||||
|
||||
# begin:github_only |
||||
filegroup( |
||||
name = "source_files", |
||||
srcs = glob( |
||||
[ |
||||
"**/*.c", |
||||
"**/*.h", |
||||
], |
||||
), |
||||
visibility = [ |
||||
"//cmake:__pkg__", |
||||
"//python/dist:__pkg__", |
||||
] |
||||
) |
||||
# end:github_only |
Loading…
Reference in new issue