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", + ], +)