mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-04-24 18:02:34 +00:00
15 lines
281 B
Python
15 lines
281 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
cc_library(
|
|
name = "pico_test",
|
|
testonly = True,
|
|
hdrs = [
|
|
"include/pico/test.h",
|
|
"include/pico/test/xrand.h",
|
|
],
|
|
includes = ["include"],
|
|
deps = [
|
|
"//src:pico_platform",
|
|
],
|
|
)
|