pico-sdk/src/common/boot_picoboot_headers/BUILD.bazel
armandomontanez b49d4ec949
Fix Bazel build breakages (#1908)
* Fix Bazel build breakages

* Adds support for new PICO_DEFAULT_UART_BAUD_RATE option.
* Fixes issues related to Picotool and boot_picoboot_headers.
* Adds pico_float RISC-V pieces to the Bazel build (not yet fully
  tested).
* Adds the missing adafruit board header to the Bazel build.

* Exclude hazard3 float test in Bazel validation script

* Restore missing dependency in hardware_boot_lock
2024-09-10 18:44:55 -05:00

13 lines
363 B
Text

package(default_visibility = ["//visibility:public"])
# This needs to remain compatible with the host build since it's used by
# Picotool.
cc_library(
name = "boot_picoboot_headers",
hdrs = [
"include/boot/picoboot.h",
"include/boot/picoboot_constants.h",
],
includes = ["include"],
deps = ["//src:pico_platform_internal"],
)