mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-12-10 07:14:36 +01:00
14 lines
281 B
Text
14 lines
281 B
Text
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",
|
|
],
|
|
)
|