mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-02-11 09:40:46 +00:00
12 lines
248 B
Python
12 lines
248 B
Python
|
package(default_visibility = ["//visibility:public"])
|
||
|
|
||
|
cc_binary(
|
||
|
name = "pico_stdlib_test",
|
||
|
testonly = True,
|
||
|
srcs = ["pico_stdlib_test.c"],
|
||
|
deps = [
|
||
|
"//src/common/pico_bit_ops",
|
||
|
"//src/common/pico_stdlib",
|
||
|
],
|
||
|
)
|