Skip to content

Commit

Permalink
Update public to fix linter for gn references
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 committed Oct 30, 2024
1 parent b1bfe6d commit 18d17cb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/backends/assert/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ pw_source_set("assert") {
":backend_config",
":public_include_path",
]
public = [ "public/pw_assert_matter/handler.h" ]
public = [
"public/pw_assert_matter/handler.h",
"public_overrides/pw_assert_backend/check_backend.h",
]
public_deps = [ ":handler.facade" ]
}

Expand Down
5 changes: 4 additions & 1 deletion src/backends/log/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ pw_facade("handler") {
backend = "${chip_root}/src/backends/log:log.impl"
public_configs = [ ":public_include_path" ]
public_deps = [ "$dir_pw_preprocessor" ]
public = [ "public/pw_log_matter/log_matter.h" ]
public = [
"public/pw_log_matter/log_matter.h",
"public_overrides/pw_log_backend/log_backend.h",
]
}

pw_source_set("log") {
Expand Down

0 comments on commit 18d17cb

Please sign in to comment.