From a8bf99f2bf19e8383c6b4c1a1ca6f339953bc982 Mon Sep 17 00:00:00 2001 From: Edward Shin Date: Wed, 26 Jun 2024 21:44:26 +0000 Subject: [PATCH] pw_hex_dump: Remove pw prefix from log_bytes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I82ccb7f69536d38e17fec6019376ef47cc755143 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/218531 Lint: Lint 🤖 Reviewed-by: Keir Mierle Presubmit-Verified: CQ Bot Account Commit-Queue: Edward Shin --- pw_hex_dump/BUILD.bazel | 4 ++-- pw_hex_dump/BUILD.gn | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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" ]