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.

64 lines
1.4 KiB

# Copyright 2022 Google LLC
#
# Use of this source code is governed by an MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT.
DEFAULT_VISIBILITY = [
"//src/google/protobuf:__subpackages__",
"//third_party/utf8_range:__subpackages__",
"//util/utf8/internal:__subpackages__",
]
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
exports_files([
"LICENSE",
"rules_fuzzing.patch",
])
# TODO Remove this once callers have been Bazelified.
filegroup(
name = "utf8_range_srcs",
srcs = [
"naive.c",
"range2-neon.c",
"range2-sse.c",
"utf8_range.h",
],
visibility = ["//:__subpackages__"],
)
cc_library(
name = "utf8_range",
srcs = [
"naive.c",
"range2-neon.c",
"range2-sse.c",
],
hdrs = ["utf8_range.h"],
strip_include_prefix = "/third_party/utf8_range",
)
cc_library(
name = "utf8_validity",
srcs = ["utf8_validity.cc"],
hdrs = ["utf8_validity.h"],
strip_include_prefix = "/third_party/utf8_range",
deps = [
"@com_google_absl//absl/strings",
],
)
cc_test(
name = "utf8_validity_test",
srcs = ["utf8_validity_test.cc"],
deps = [
":utf8_validity",
"@com_google_absl//absl/strings",
"@com_google_googletest//:gtest_main",
],
)