blob: 22daadad4aef591c90b4522eed1b6e1b7d3b0f34 [file]
load("@rules_cc//cc:cc_library.bzl", "cc_library")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "pico_rand",
srcs = ["rand.c"],
hdrs = ["include/pico/rand.h"],
includes = ["include"],
target_compatible_with = ["//bazel/constraint:host"],
deps = [
"//src/host/hardware_sync",
"//src/host/hardware_timer",
],
)