mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-04-24 18:02:34 +00:00
15 lines
378 B
Python
15 lines
378 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
cc_binary(
|
|
name = "pico_sem_test",
|
|
testonly = True,
|
|
srcs = ["pico_sem_test.c"],
|
|
deps = [
|
|
"//src/common/pico_sync",
|
|
"//test/pico_test",
|
|
] + select({
|
|
"//bazel/constraint:host": ["//src/host/pico_stdlib"],
|
|
"//conditions:default": ["//src/rp2_common/pico_stdlib"],
|
|
}),
|
|
)
|