mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2026-01-28 01:47:21 +01:00
32 lines
1.2 KiB
Text
32 lines
1.2 KiB
Text
package(default_visibility = ["//visibility:public"])
|
|
|
|
# This shim exists as a way to break internal header dependency cycles
|
|
# that occur within the dependency chain of the pico_platform target below.
|
|
alias(
|
|
name = "pico_platform_internal",
|
|
actual = select({
|
|
"//bazel/constraint:host": "//src/host/pico_platform:pico_platform_internal",
|
|
"//conditions:default": "//src/rp2_common:pico_platform_internal",
|
|
}),
|
|
visibility = [
|
|
"//src/common/boot_picobin_headers:__pkg__",
|
|
"//src/common/boot_picoboot_headers:__pkg__",
|
|
"//src/common/hardware_claim:__pkg__",
|
|
"//src/common/pico_base_headers:__pkg__",
|
|
"//src/common/pico_binary_info:__pkg__",
|
|
# These libraries sometimes need the host version even though they live
|
|
# in rp2_common.
|
|
"//src/rp2_common/boot_bootrom_headers:__pkg__",
|
|
"//src/rp2_common/hardware_boot_lock:__pkg__",
|
|
"//src/rp2_common/pico_flash:__pkg__",
|
|
"//src/rp2_common/hardware_rcp:__pkg__",
|
|
],
|
|
)
|
|
|
|
alias(
|
|
name = "pico_platform",
|
|
actual = select({
|
|
"//bazel/constraint:host": "//src/host/pico_platform",
|
|
"//conditions:default": "//src/rp2_common:pico_platform",
|
|
}),
|
|
)
|