Files
nearby/fastpair/internal/BUILD
T
2023-05-25 14:25:41 -07:00

21 lines
500 B
Python

licenses(["notice"])
cc_library(
name = "internal",
srcs = ["fast_pair_seeker_impl.cc"],
hdrs = [
"fast_pair_seeker_impl.h",
],
compatible_with = ["//buildenv/target:non_prod"],
visibility = [
"//fastpair:__subpackages__",
],
deps = [
"//fastpair:fast_pair_events",
"//fastpair:fast_pair_seeker",
"//fastpair/repository:device_repository",
"//internal/platform:types",
"@com_google_absl//absl/status",
],
)