load("//bazel:defs.bzl", "compatible_with_rp2") package(default_visibility = ["//visibility:public"]) cc_library( name = "hardware_xip_cache", srcs = ["xip_cache.c"], hdrs = ["include/hardware/xip_cache.h"], includes = ["include"], target_compatible_with = compatible_with_rp2(), deps = [ "//src/rp2_common/hardware_sync", ], )