blob: f56a7085c132d90d50c4595a53c673667543752d [file]
load("@rules_cc//cc:cc_library.bzl", "cc_library")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "hardware_sha256",
srcs = ["sha256.c"],
hdrs = ["include/hardware/sha256.h"],
includes = ["include"],
target_compatible_with = ["//bazel/constraint:rp2350"],
deps = [
"//src/rp2_common:hardware_structs",
"//src/rp2_common:pico_platform",
],
)