mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
26 lines
474 B
Python
26 lines
474 B
Python
|
cc_library(
|
||
|
name = "helpers",
|
||
|
testonly = True,
|
||
|
hdrs = [
|
||
|
"check_compat.h",
|
||
|
"helpers.h",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
[cc_test(
|
||
|
name = src[:-2],
|
||
|
size = "small",
|
||
|
srcs = [src],
|
||
|
copts = [
|
||
|
"-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"])]
|