summaryrefslogtreecommitdiff
path: root/testing/BUILD.bazel
blob: 117eb69d0a28b702be8a5b7e6a254595279588c6 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
load("//tools:no_undefined.bzl", "cc_library")

cc_library(
    name = "misc_tools",
    hdrs = [
        "misc_tools.c",
    ],
    visibility = ["//c-toxcore:__subpackages__"],
    deps = ["//c-toxcore/toxcore:ccompat"],
)

cc_binary(
    name = "DHT_test",
    srcs = ["DHT_test.c"],
    deps = [
        ":misc_tools",
        "//c-toxcore/toxcore",
    ],
)

cc_binary(
    name = "Messenger_test",
    srcs = ["Messenger_test.c"],
    deps = [
        ":misc_tools",
        "//c-toxcore/toxcore",
    ],
)

cc_binary(
    name = "av_test",
    srcs = ["av_test.c"],
    # We must always optimise this program, because otherwise GCC won't inline
    # cvArcLength but also not emit it out of line, resulting in undefined
    # reference errors.
    copts = ["-O1"],
    deps = [
        "//c-toxcore/toxav",
        "//c-toxcore/toxav:monolith",
        "//c-toxcore/toxcore",
        "@opencv//:core",
        "@opencv//:highgui",
        "@portaudio",
        "@sndfile",
    ],
)

cc_binary(
    name = "random_testing",
    srcs = ["random_testing.cc"],
    deps = [
        ":misc_tools",
        "//c-toxcore/toxcore",
    ],
)