1load("//bazel:defs.bzl", "compatible_with_rp2")
2
3package(default_visibility = ["//visibility:public"])
4
5cc_library(
6    name = "hardware_xip_cache",
7    srcs = ["xip_cache.c"],
8    hdrs = ["include/hardware/xip_cache.h"],
9    includes = ["include"],
10    target_compatible_with = compatible_with_rp2(),
11    deps = [
12        "//src/rp2_common/hardware_sync",
13    ],
14)
15