Skip to content

Commit 66edce6

Browse files
committed
Break out bluetooth_handler into separate library target
Assisted-by: Antigravity:1.0 Bug: b/505087594
1 parent 56b318f commit 66edce6

1 file changed

Lines changed: 17 additions & 2 deletions

File tree

base/cvd/cuttlefish/host/frontend/webrtc/BUILD.bazel

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,25 @@ cf_cc_library(
8787
hdrs = ["audio_settings.h"],
8888
)
8989

90+
cf_cc_library(
91+
name = "libcuttlefish_webrtc_bluetooth_handler",
92+
srcs = ["bluetooth_handler.cpp"],
93+
hdrs = ["bluetooth_handler.h"],
94+
deps = [
95+
"//cuttlefish/common/libs/fs",
96+
"//libbase",
97+
"@abseil-cpp//absl/log",
98+
"@abseil-cpp//absl/log:check",
99+
"@abseil-cpp//absl/strings",
100+
"@fmt",
101+
"@fruit",
102+
"@jsoncpp",
103+
],
104+
)
105+
90106
cf_cc_binary(
91107
name = "webRTC",
92108
srcs = [
93-
"bluetooth_handler.cpp",
94-
"bluetooth_handler.h",
95109
"client_server.cpp",
96110
"client_server.h",
97111
"connection_observer.cpp",
@@ -119,6 +133,7 @@ cf_cc_binary(
119133
":libcuttlefish_webrtc_audio_handler",
120134
":libcuttlefish_webrtc_audio_mixer",
121135
":libcuttlefish_webrtc_audio_settings",
136+
":libcuttlefish_webrtc_bluetooth_handler",
122137
":libcuttlefish_webrtc_command_channel",
123138
":libcuttlefish_webrtc_commands_proto",
124139
"//cuttlefish/common/libs/fs",

0 commit comments

Comments
 (0)