pw_hex_dump: Remove pw prefix from log_bytes

Change-Id: I82ccb7f69536d38e17fec6019376ef47cc755143
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/218531
Lint: Lint 🤖 <android-build-ayeaye@system.gserviceaccount.com>
Reviewed-by: Keir Mierle <keir@google.com>
Presubmit-Verified: CQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>
Commit-Queue: Edward Shin <shined@google.com>
This commit is contained in:
Edward Shin 2024-06-26 21:44:26 +00:00 committed by CQ Bot Account
parent 2e092bc815
commit a8bf99f2bf
2 changed files with 4 additions and 4 deletions

View File

@ -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",
],

View File

@ -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" ]