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.
45 lines
879 B
45 lines
879 B
1 year ago
|
# Copyright (c) 2009-2021, Google LLC
|
||
|
# All rights reserved.
|
||
|
#
|
||
1 year ago
|
# 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
|
||
1 year ago
|
|
||
1 year ago
|
load("//bazel:build_defs.bzl", "UPB_DEFAULT_COPTS")
|
||
1 year ago
|
|
||
|
cc_library(
|
||
|
name = "port",
|
||
|
hdrs = [
|
||
|
"atomic.h",
|
||
|
"vsnprintf_compat.h",
|
||
|
],
|
||
|
copts = UPB_DEFAULT_COPTS,
|
||
|
textual_hdrs = [":inc"],
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|
||
|
|
||
|
filegroup(
|
||
|
name = "inc",
|
||
|
srcs = [
|
||
|
"def.inc",
|
||
|
"undef.inc",
|
||
|
],
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|
||
|
|
||
|
# begin:github_only
|
||
|
filegroup(
|
||
|
name = "source_files",
|
||
|
srcs = glob(
|
||
|
[
|
||
|
"**/*.h",
|
||
|
"**/*.inc",
|
||
|
],
|
||
|
),
|
||
|
visibility = [
|
||
1 year ago
|
"//upb/cmake:__pkg__",
|
||
1 year ago
|
"//python/dist:__pkg__",
|
||
1 year ago
|
]
|
||
|
)
|
||
|
# end:github_only
|