1load("//bazel:defs.bzl", "compatible_with_rp2") 2 3package(default_visibility = ["//visibility:public"]) 4 5cc_library( 6 name = "hardware_pll", 7 srcs = ["pll.c"], 8 hdrs = ["include/hardware/pll.h"], 9 includes = ["include"], 10 target_compatible_with = compatible_with_rp2(), 11 deps = [ 12 "//src/common/pico_base_headers", 13 "//src/rp2_common:hardware_structs", 14 "//src/rp2_common:pico_platform_internal", 15 "//src/rp2_common/hardware_clocks:hardware_clocks_headers", 16 "//src/rp2_common/hardware_resets", 17 ], 18) 19