mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
147 lines
2.5 KiB
Python
147 lines
2.5 KiB
Python
load("@rules_cc//cc:defs.bzl", "cc_test")
|
|
load("//tools:no_undefined.bzl", "cc_library")
|
|
|
|
filegroup(
|
|
name = "public_headers",
|
|
srcs = ["toxav.h"],
|
|
visibility = ["//c-toxcore:__pkg__"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "public",
|
|
hdrs = [":public_headers"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "ring_buffer",
|
|
srcs = ["ring_buffer.c"],
|
|
hdrs = ["ring_buffer.h"],
|
|
deps = ["//c-toxcore/toxcore:ccompat"],
|
|
)
|
|
|
|
cc_test(
|
|
name = "ring_buffer_test",
|
|
size = "small",
|
|
srcs = ["ring_buffer_test.cc"],
|
|
deps = [
|
|
":ring_buffer",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "ring_buffer_srcs",
|
|
hdrs = [
|
|
"ring_buffer.c",
|
|
"ring_buffer.h",
|
|
],
|
|
visibility = ["//c-toxcore/testing:__pkg__"],
|
|
deps = ["//c-toxcore/toxcore:ccompat"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "bwcontroller",
|
|
srcs = ["bwcontroller.c"],
|
|
hdrs = ["bwcontroller.h"],
|
|
deps = [
|
|
":ring_buffer",
|
|
"//c-toxcore/toxcore:Messenger",
|
|
"//c-toxcore/toxcore:toxcore",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "rtp",
|
|
srcs = ["rtp.c"],
|
|
hdrs = ["rtp.h"],
|
|
deps = [":bwcontroller"],
|
|
)
|
|
|
|
cc_test(
|
|
name = "rtp_test",
|
|
size = "small",
|
|
srcs = ["rtp_test.cc"],
|
|
deps = [
|
|
":rtp",
|
|
"//c-toxcore/toxcore:crypto_core",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "audio",
|
|
srcs = ["audio.c"],
|
|
hdrs = ["audio.h"],
|
|
deps = [
|
|
":public",
|
|
":rtp",
|
|
"//c-toxcore/toxcore:network",
|
|
"@opus",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "video",
|
|
srcs = [
|
|
"msi.c",
|
|
"video.c",
|
|
],
|
|
hdrs = [
|
|
"msi.h",
|
|
"video.h",
|
|
],
|
|
deps = [
|
|
":audio",
|
|
":public",
|
|
"//c-toxcore/toxcore:network",
|
|
"@libvpx",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "groupav",
|
|
srcs = ["groupav.c"],
|
|
hdrs = ["groupav.h"],
|
|
deps = [
|
|
"//c-toxcore/toxcore",
|
|
"@opus",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "toxav",
|
|
srcs = [
|
|
"toxav.c",
|
|
"toxav_old.c",
|
|
],
|
|
hdrs = [
|
|
"toxav.api.h",
|
|
"toxav.h",
|
|
],
|
|
visibility = ["//c-toxcore:__subpackages__"],
|
|
deps = [
|
|
":groupav",
|
|
":video",
|
|
],
|
|
)
|
|
|
|
CIMPLE_SRCS = glob(
|
|
[
|
|
"*.c",
|
|
"*.h",
|
|
],
|
|
exclude = [
|
|
"*.api.h",
|
|
"toxav.h",
|
|
],
|
|
)
|
|
|
|
sh_test(
|
|
name = "cimple_test",
|
|
size = "small",
|
|
srcs = ["//hs-tokstyle/tools:check-cimple"],
|
|
args = ["$(location %s)" % f for f in CIMPLE_SRCS],
|
|
data = CIMPLE_SRCS,
|
|
tags = ["manual"],
|
|
)
|