mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 07:06:11 -04:00
33 lines
639 B
Python
33 lines
639 B
Python
licenses(["notice"])
|
|
|
|
cc_library(
|
|
name = "types",
|
|
hdrs = [
|
|
"device_info.h",
|
|
],
|
|
srcs = [
|
|
"device_info.cc",
|
|
],
|
|
deps = [
|
|
"//internal/platform/implementation:types",
|
|
"//internal/platform:logging",
|
|
"@com_google_absl//absl/strings",
|
|
"@libsystemd//:lib",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "linux",
|
|
hdrs = [
|
|
"bluetooth_adapter.h",
|
|
"bluez.h"
|
|
],
|
|
srcs = ["bluetooth_adapter.cc"],
|
|
deps = [
|
|
"//internal/platform/implementation:types",
|
|
"//internal/platform:logging",
|
|
"@com_google_absl//absl/strings",
|
|
"@libsystemd//:lib",
|
|
]
|
|
)
|