From 98febe0589db3f6fedba03bfdc1d246f723d2f25 Mon Sep 17 00:00:00 2001 From: iphydf Date: Sat, 20 Jan 2018 14:09:50 +0000 Subject: Add testing/*.c (except av_test) to bazel build. --- testing/BUILD | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) (limited to 'testing') diff --git a/testing/BUILD b/testing/BUILD index cf7cd40f..76f3db04 100644 --- a/testing/BUILD +++ b/testing/BUILD @@ -5,3 +5,49 @@ cc_library( ], visibility = ["//visibility:public"], ) + +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 = "irc_syncbot", + srcs = ["irc_syncbot.c"], + deps = [ + ":misc_tools", + "//c-toxcore/toxcore", + ], +) + +cc_binary( + name = "tox_shell", + srcs = ["tox_shell.c"], + linkopts = ["-lutil"], + deps = [ + ":misc_tools", + "//c-toxcore/toxcore", + ], +) + +cc_binary( + name = "tox_sync", + srcs = ["tox_sync.c"], + deps = [ + ":misc_tools", + "//c-toxcore/toxcore", + ], +) -- cgit v1.2.3