mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 15:36:12 -04:00
17 lines
305 B
Python
17 lines
305 B
Python
load("@rules_cc//cc:defs.bzl", "cc_proto_library")
|
|
|
|
licenses(["notice"])
|
|
|
|
proto_library(
|
|
name = "fastpair_proto",
|
|
srcs = ["fastpair_rpcs.proto"],
|
|
)
|
|
|
|
cc_proto_library(
|
|
name = "fastpair_cc_proto",
|
|
visibility = [
|
|
"//fastpair:__subpackages__",
|
|
],
|
|
deps = [":fastpair_proto"],
|
|
)
|