summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-01-20 14:09:50 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-01-20 19:32:12 +0000
commit98febe0589db3f6fedba03bfdc1d246f723d2f25 (patch)
treee3c00bba5eb8f13f6b3460d25bf7974a5a39fe01 /testing
parentd7583a719a73cf5ec75da7839b2fd2c11d676c45 (diff)
Add testing/*.c (except av_test) to bazel build.
Diffstat (limited to 'testing')
-rw-r--r--testing/BUILD46
1 files changed, 46 insertions, 0 deletions
diff --git a/testing/BUILD b/testing/BUILD
index cf7cd40f..76f3db04 100644
--- a/testing/BUILD
+++ b/testing/BUILD
@@ -5,3 +5,49 @@ cc_library(
5 ], 5 ],
6 visibility = ["//visibility:public"], 6 visibility = ["//visibility:public"],
7) 7)
8
9cc_binary(
10 name = "DHT_test",
11 srcs = ["DHT_test.c"],
12 deps = [
13 ":misc_tools",
14 "//c-toxcore/toxcore",
15 ],
16)
17
18cc_binary(
19 name = "Messenger_test",
20 srcs = ["Messenger_test.c"],
21 deps = [
22 ":misc_tools",
23 "//c-toxcore/toxcore",
24 ],
25)
26
27cc_binary(
28 name = "irc_syncbot",
29 srcs = ["irc_syncbot.c"],
30 deps = [
31 ":misc_tools",
32 "//c-toxcore/toxcore",
33 ],
34)
35
36cc_binary(
37 name = "tox_shell",
38 srcs = ["tox_shell.c"],
39 linkopts = ["-lutil"],
40 deps = [
41 ":misc_tools",
42 "//c-toxcore/toxcore",
43 ],
44)
45
46cc_binary(
47 name = "tox_sync",
48 srcs = ["tox_sync.c"],
49 deps = [
50 ":misc_tools",
51 "//c-toxcore/toxcore",
52 ],
53)