blob: d89fd3af84b9ee4954e121322ba5916c75f40b10 [file] [log] [blame] [edit]
package(default_visibility = ["//visibility:public"])
cc_library(
name = "platform_defs",
hdrs = [
"include/hardware/platform_defs.h",
],
includes = ["include"],
target_compatible_with = ["//bazel/constraint:host"],
)
cc_library(
name = "pico_platform",
srcs = ["platform_base.c"],
hdrs = [
"include/pico/platform.h",
],
includes = ["include"],
target_compatible_with = ["//bazel/constraint:host"],
deps = [
":platform_defs",
"//src/common/pico_base:pico_base_interface",
],
)