summaryrefslogtreecommitdiff
path: root/auto_tests/BUILD
blob: f4542ccb0c2c4e582e414536517ad1c2c6df17ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
load("//tools:no_undefined.bzl", "cc_library")

cc_library(
    name = "helpers",
    testonly = True,
    hdrs = [
        "check_compat.h",
        "helpers.h",
    ],
)

[cc_test(
    name = src[:-2],
    size = "small",
    srcs = [src],
    copts = [
        "-Wno-parentheses",
    ],
    deps = [
        ":helpers",
        "//c-toxcore/other:monolith",
        "//c-toxcore/testing:misc_tools",
        "//c-toxcore/toxav",
        "//c-toxcore/toxcore",
        "//c-toxcore/toxencryptsave",
        "@check",
    ],
) for src in glob(["*_test.c"])]