Add bluetooth_adapter implementation.

This commit is contained in:
Vibhav Pant
2023-07-23 19:01:50 +05:30
parent 545646f63e
commit f9a62a24dc
4 changed files with 226 additions and 0 deletions
@@ -16,3 +16,17 @@ cc_library(
],
)
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",
]
)