1load("//bazel:defs.bzl", "compatible_with_rp2")
2
3package(default_visibility = ["//visibility:public"])
4
5cc_binary(
6    name = "pico_stdio_test",
7    testonly = True,
8    srcs = ["pico_stdio_test.c"],
9    # Host doesn't support PICO_TIME_NO_ALARM_SUPPORT without pico_host_sdl.
10    target_compatible_with = compatible_with_rp2(),
11    deps = [
12        "//src/rp2_common/pico_multicore",
13        "//src/rp2_common/pico_stdlib",
14        "//test/pico_test",
15    ],
16)
17