aboutsummaryrefslogtreecommitdiff
path: root/pw_bluetooth_hci/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'pw_bluetooth_hci/BUILD.gn')
-rw-r--r--pw_bluetooth_hci/BUILD.gn11
1 files changed, 10 insertions, 1 deletions
diff --git a/pw_bluetooth_hci/BUILD.gn b/pw_bluetooth_hci/BUILD.gn
index f701613c5..0f5107163 100644
--- a/pw_bluetooth_hci/BUILD.gn
+++ b/pw_bluetooth_hci/BUILD.gn
@@ -35,9 +35,11 @@ pw_source_set("packet") {
public_configs = [ ":public_include_path" ]
public = [ "public/pw_bluetooth_hci/packet.h" ]
public_deps = [
+ "$dir_pw_bytes:bit",
dir_pw_assert,
dir_pw_bytes,
dir_pw_result,
+ dir_pw_span,
]
sources = [ "packet.cc" ]
deps = [ dir_pw_status ]
@@ -49,8 +51,10 @@ pw_source_set("uart_transport") {
sources = [ "uart_transport.cc" ]
public_deps = [
":packet",
+ "$dir_pw_bytes:bit",
dir_pw_bytes,
dir_pw_function,
+ dir_pw_span,
dir_pw_status,
]
}
@@ -59,14 +63,19 @@ pw_test_group("tests") {
tests = [
":packet_test",
":uart_transport_test",
- ":uart_transport_fuzzer",
+ ":uart_transport_fuzzer_test",
]
}
+group("fuzzers") {
+ deps = [ ":uart_transport_fuzzer" ]
+}
+
pw_test("packet_test") {
sources = [ "packet_test.cc" ]
deps = [
":packet",
+ "$dir_pw_containers",
dir_pw_bytes,
dir_pw_status,
]