pw_clock_tree_mcuxpresso: Fix source set name and visibility

Bug: 331672574
Change-Id: Ibddba140032d7729a175d1fa2b5852f35da06af7
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/212152
Presubmit-Verified: CQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>
Commit-Queue: Christoph Klee <chklee@google.com>
Reviewed-by: Austin Foxley <afoxley@google.com>
Lint: Lint 🤖 <android-build-ayeaye@system.gserviceaccount.com>
This commit is contained in:
Christoph Klee 2024-05-31 20:45:35 +00:00 committed by CQ Bot Account
parent 1d491c30fe
commit 1a672e2605

View File

@ -24,12 +24,11 @@ config("default_config") {
}
if (pw_third_party_mcuxpresso_SDK != "") {
pw_source_set("clock_tree_mcuxpresso") {
pw_source_set("pw_clock_tree_mcuxpresso") {
public_configs = [ ":default_config" ]
public = [ "public/pw_clock_tree_mcuxpresso/clock_tree.h" ]
visibility = [ ":*" ]
deps = [
"//pw_clock_manager",
public_deps = [
"//pw_clock_tree",
pw_third_party_mcuxpresso_SDK,
]
}