mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Publish a single public BUILD target for c-toxcore.
This commit is contained in:
parent
8f1bbcf83e
commit
42636861d8
7
BUILD
7
BUILD
|
@ -18,7 +18,7 @@ genrule(
|
||||||
)
|
)
|
||||||
|
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "headers",
|
name = "c-toxcore",
|
||||||
hdrs = [
|
hdrs = [
|
||||||
"tox/tox.h",
|
"tox/tox.h",
|
||||||
"tox/toxav.h",
|
"tox/toxav.h",
|
||||||
|
@ -26,4 +26,9 @@ cc_library(
|
||||||
],
|
],
|
||||||
includes = ["."],
|
includes = ["."],
|
||||||
visibility = ["//visibility:public"],
|
visibility = ["//visibility:public"],
|
||||||
|
deps = [
|
||||||
|
"//c-toxcore/toxav",
|
||||||
|
"//c-toxcore/toxcore",
|
||||||
|
"//c-toxcore/toxencryptsave",
|
||||||
|
],
|
||||||
)
|
)
|
||||||
|
|
|
@ -5,7 +5,7 @@ cc_library(
|
||||||
hdrs = [
|
hdrs = [
|
||||||
"misc_tools.c",
|
"misc_tools.c",
|
||||||
],
|
],
|
||||||
visibility = ["//visibility:public"],
|
visibility = ["//c-toxcore:__subpackages__"],
|
||||||
)
|
)
|
||||||
|
|
||||||
cc_binary(
|
cc_binary(
|
||||||
|
|
|
@ -84,11 +84,10 @@ cc_library(
|
||||||
"toxav.api.h",
|
"toxav.api.h",
|
||||||
"toxav.h",
|
"toxav.h",
|
||||||
],
|
],
|
||||||
visibility = ["//visibility:public"],
|
visibility = ["//c-toxcore:__subpackages__"],
|
||||||
deps = [
|
deps = [
|
||||||
":groupav",
|
":groupav",
|
||||||
":video",
|
":video",
|
||||||
"//c-toxcore/toxcore",
|
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -103,7 +102,7 @@ cc_library(
|
||||||
"//c-toxcore/testing:__pkg__",
|
"//c-toxcore/testing:__pkg__",
|
||||||
],
|
],
|
||||||
deps = [
|
deps = [
|
||||||
"//c-toxcore/toxcore",
|
"//c-toxcore/toxcore:group",
|
||||||
"@libvpx",
|
"@libvpx",
|
||||||
"@opus",
|
"@opus",
|
||||||
],
|
],
|
||||||
|
|
|
@ -188,7 +188,7 @@ cc_library(
|
||||||
copts = [
|
copts = [
|
||||||
"-Wno-parentheses",
|
"-Wno-parentheses",
|
||||||
],
|
],
|
||||||
visibility = ["//visibility:public"],
|
visibility = ["//c-toxcore:__subpackages__"],
|
||||||
deps = [
|
deps = [
|
||||||
":group",
|
":group",
|
||||||
"//c-toxcore/toxencryptsave:defines",
|
"//c-toxcore/toxencryptsave:defines",
|
||||||
|
|
|
@ -16,7 +16,7 @@ cc_library(
|
||||||
name = "toxencryptsave",
|
name = "toxencryptsave",
|
||||||
srcs = ["toxencryptsave.c"],
|
srcs = ["toxencryptsave.c"],
|
||||||
hdrs = ["toxencryptsave.h"],
|
hdrs = ["toxencryptsave.h"],
|
||||||
visibility = ["//visibility:public"],
|
visibility = ["//c-toxcore:__subpackages__"],
|
||||||
deps = [
|
deps = [
|
||||||
":defines",
|
":defines",
|
||||||
"//c-toxcore/toxcore:crypto_core",
|
"//c-toxcore/toxcore:crypto_core",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user