mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 07:36:10 -04:00
32 lines
690 B
Python
32 lines
690 B
Python
cc_library(
|
|
name = "authentication_transport_interface",
|
|
hdrs = [
|
|
"authentication_transport.h",
|
|
],
|
|
visibility = [
|
|
"//:__subpackages__",
|
|
],
|
|
deps = [
|
|
"@com_google_absl//absl/strings",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "device",
|
|
hdrs = [
|
|
"device.h",
|
|
"device_provider.h",
|
|
],
|
|
visibility = [
|
|
"//connections:__subpackages__",
|
|
"//presence:__subpackages__",
|
|
],
|
|
deps = [
|
|
":authentication_transport_interface",
|
|
"//internal/platform:connection_info",
|
|
"//internal/platform:types",
|
|
"@com_google_absl//absl/strings",
|
|
"@com_google_absl//absl/types:variant",
|
|
],
|
|
)
|