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.
67 lines
1.3 KiB
67 lines
1.3 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("//upb/bazel:build_defs.bzl", "UPB_DEFAULT_COPTS") |
|
|
|
package(default_applicable_licenses = ["//:license"]) |
|
|
|
cc_library( |
|
name = "hash", |
|
srcs = [ |
|
"common.c", |
|
], |
|
hdrs = [ |
|
"common.h", |
|
"int_table.h", |
|
"str_table.h", |
|
], |
|
copts = UPB_DEFAULT_COPTS, |
|
visibility = ["//visibility:public"], |
|
deps = [ |
|
"//upb:base", |
|
"//upb:mem", |
|
"//upb:port", |
|
"//upb/base:internal", |
|
], |
|
) |
|
|
|
cc_test( |
|
name = "test", |
|
srcs = ["test.cc"], |
|
deps = [ |
|
":hash", |
|
"//upb:mem", |
|
"//upb:port", |
|
"@com_google_absl//absl/container:flat_hash_map", |
|
"@com_google_googletest//:gtest", |
|
"@com_google_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", |
|
], |
|
), |
|
visibility = ["//pkg:__pkg__"], |
|
)
|
|
|