toxcore/testing/BUILD.bazel
iphydf 36ba80aacb
Remove csrc from the RTPHeader struct.
This is not used by anything in the code, so we shouldn't have it in the
header.
2018-02-08 13:20:40 +00:00

43 lines
790 B
Python

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"],
deps = [
"//c-toxcore/toxav",
"//c-toxcore/toxav:monolith",
"//c-toxcore/toxcore",
"@portaudio",
"@sndfile",
"@opencv//:core",
"@opencv//:highgui",
],
)