aboutsummaryrefslogtreecommitdiff
path: root/pw_bluetooth_hci/BUILD.gn
diff options
context:
space:
mode:
authorXin Li <delphij@google.com>2023-08-14 15:38:30 -0700
committerXin Li <delphij@google.com>2023-08-14 15:38:30 -0700
commitbddf63953e111d742b591c1c0c7c34bcda8a51c7 (patch)
tree3a93128bff4b737b24b0c9581922c0b20410f0f4 /pw_bluetooth_hci/BUILD.gn
parentee890da55c82b95deca3518d5f3777e3d8ca9f0e (diff)
parentfbb9890f8922aa55fde183655a0017e69127ea4b (diff)
downloadpigweed-tmp_amf_298295554.tar.gz
Merge Android U (ab/10368041)tmp_amf_298295554
Bug: 291102124 Merged-In: I10c41adb8fe3e126cfa4ff2f49b15863fff379de Change-Id: I66f7a6cccaafc173d3924dae62a736c6c53520c7
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,
]