blob: 0668606b3e39e194017ab9861c6b5f5c01f3fafc [file]
load("@rules_cc//cc:cc_library.bzl", "cc_library")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "pico_stdlib",
srcs = ["stdlib.c"],
target_compatible_with = ["//bazel/constraint:host"],
deps = [
"//src/common/pico_time",
"//src/host/hardware_gpio",
"//src/host/hardware_uart",
"//src/host/pico_platform",
"//src/host/pico_stdio",
],
)