2018-01-22 00:58:32 +08:00
|
|
|
load("//tools:no_undefined.bzl", "cc_library")
|
|
|
|
|
2018-01-18 23:14:50 +08:00
|
|
|
cc_library(
|
|
|
|
name = "misc_tools",
|
|
|
|
hdrs = [
|
|
|
|
"misc_tools.c",
|
|
|
|
],
|
2018-01-23 03:34:52 +08:00
|
|
|
visibility = ["//c-toxcore:__subpackages__"],
|
2018-01-29 05:30:39 +08:00
|
|
|
deps = ["//c-toxcore/toxcore:ccompat"],
|
2018-01-18 23:14:50 +08:00
|
|
|
)
|
2018-01-20 22:09:50 +08:00
|
|
|
|
|
|
|
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",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2018-01-21 09:05:23 +08:00
|
|
|
cc_binary(
|
|
|
|
name = "av_test",
|
|
|
|
srcs = ["av_test.c"],
|
|
|
|
deps = [
|
|
|
|
"//c-toxcore/toxav",
|
|
|
|
"//c-toxcore/toxav:monolith",
|
|
|
|
"//c-toxcore/toxcore",
|
2018-02-02 23:37:19 +08:00
|
|
|
"@opencv//:core",
|
|
|
|
"@opencv//:highgui",
|
2018-01-20 05:59:42 +08:00
|
|
|
"@portaudio",
|
|
|
|
"@sndfile",
|
2018-01-21 09:05:23 +08:00
|
|
|
],
|
|
|
|
)
|