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.
53 lines
1.0 KiB
53 lines
1.0 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("//bazel:build_defs.bzl", "UPB_DEFAULT_COPTS") |
|
|
|
cc_library( |
|
name = "base", |
|
srcs = [ |
|
"status.c", |
|
], |
|
hdrs = [ |
|
"descriptor_constants.h", |
|
"status.h", |
|
"status.hpp", |
|
"string_view.h", |
|
], |
|
copts = UPB_DEFAULT_COPTS, |
|
visibility = ["//visibility:public"], |
|
deps = [ |
|
"//upb:port", |
|
], |
|
) |
|
|
|
cc_library( |
|
name = "internal", |
|
hdrs = [ |
|
"internal/log2.h", |
|
], |
|
copts = UPB_DEFAULT_COPTS, |
|
visibility = ["//visibility:public"], |
|
deps = ["//upb:port"], |
|
) |
|
|
|
# begin:github_only |
|
filegroup( |
|
name = "source_files", |
|
srcs = glob( |
|
[ |
|
"**/*.c", |
|
"**/*.h", |
|
"**/*.hpp", |
|
], |
|
), |
|
visibility = [ |
|
"//upb/cmake:__pkg__", |
|
"//python/dist:__pkg__", |
|
] |
|
) |
|
# end:github_only
|
|
|