mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
27 lines
494 B
Python
27 lines
494 B
Python
cc_library(
|
|
name = "helpers",
|
|
testonly = True,
|
|
hdrs = [
|
|
"check_compat.h",
|
|
"helpers.h",
|
|
],
|
|
)
|
|
|
|
[cc_test(
|
|
name = src[:-2],
|
|
size = "small",
|
|
srcs = [src],
|
|
copts = [
|
|
"-std=c99",
|
|
"-Wno-parentheses",
|
|
],
|
|
deps = [
|
|
":helpers",
|
|
"//c-toxcore/other:monolith",
|
|
"//c-toxcore/testing:misc_tools",
|
|
"//c-toxcore/toxav",
|
|
"//c-toxcore/toxcore",
|
|
"@check",
|
|
],
|
|
) for src in glob(["*_test.c"])]
|