mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 15:36:12 -04:00
21 lines
500 B
Python
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",
|
|
],
|
|
)
|