diff --git a/pw_hex_dump/BUILD.bazel b/pw_hex_dump/BUILD.bazel index bb50a9066..9773216ad 100644 --- a/pw_hex_dump/BUILD.bazel +++ b/pw_hex_dump/BUILD.bazel @@ -51,7 +51,7 @@ pw_cc_test( ) cc_library( - name = "pw_log_bytes", + name = "log_bytes", srcs = [], hdrs = [ "public/pw_hex_dump/log_bytes.h", @@ -70,7 +70,7 @@ pw_cc_test( "log_bytes_test.cc", ], deps = [ - ":pw_log_bytes", + ":log_bytes", "//pw_log", "//pw_unit_test", ], diff --git a/pw_hex_dump/BUILD.gn b/pw_hex_dump/BUILD.gn index 93c3c17e6..2a8afcca7 100644 --- a/pw_hex_dump/BUILD.gn +++ b/pw_hex_dump/BUILD.gn @@ -34,7 +34,7 @@ pw_source_set("pw_hex_dump") { sources = [ "hex_dump.cc" ] } -pw_source_set("pw_log_bytes") { +pw_source_set("log_bytes") { public_configs = [ ":default_config" ] public_deps = [ ":pw_hex_dump", @@ -65,7 +65,7 @@ pw_test("hex_dump_test") { pw_test("log_bytes_test") { deps = [ - ":pw_log_bytes", + ":log_bytes", dir_pw_log, ] sources = [ "log_bytes_test.cc" ]