2023-07-25 11:53:09 +02:00
|
|
|
load("@rules_cc//cc:defs.bzl", "cc_binary")
|
|
|
|
|
|
|
|
cc_binary(
|
|
|
|
name = "bootstrap_daemon",
|
|
|
|
srcs = glob([
|
|
|
|
"src/*.c",
|
|
|
|
"src/*.h",
|
|
|
|
]),
|
2024-12-19 16:27:40 +01:00
|
|
|
tags = ["no-windows"],
|
2023-07-25 11:53:09 +02:00
|
|
|
deps = [
|
|
|
|
"//c-toxcore/other:bootstrap_node_packets",
|
|
|
|
"//c-toxcore/toxcore:DHT",
|
|
|
|
"//c-toxcore/toxcore:LAN_discovery",
|
|
|
|
"//c-toxcore/toxcore:TCP_server",
|
|
|
|
"//c-toxcore/toxcore:announce",
|
2024-12-19 16:27:40 +01:00
|
|
|
"//c-toxcore/toxcore:attributes",
|
2023-07-25 11:53:09 +02:00
|
|
|
"//c-toxcore/toxcore:ccompat",
|
2024-12-19 16:27:40 +01:00
|
|
|
"//c-toxcore/toxcore:crypto_core",
|
|
|
|
"//c-toxcore/toxcore:forwarding",
|
|
|
|
"//c-toxcore/toxcore:group_announce",
|
2023-07-25 11:53:09 +02:00
|
|
|
"//c-toxcore/toxcore:group_onion_announce",
|
|
|
|
"//c-toxcore/toxcore:logger",
|
2024-12-19 16:27:40 +01:00
|
|
|
"//c-toxcore/toxcore:mem",
|
2023-07-25 11:53:09 +02:00
|
|
|
"//c-toxcore/toxcore:mono_time",
|
2024-12-19 16:27:40 +01:00
|
|
|
"//c-toxcore/toxcore:network",
|
|
|
|
"//c-toxcore/toxcore:onion",
|
2023-07-25 11:53:09 +02:00
|
|
|
"//c-toxcore/toxcore:onion_announce",
|
|
|
|
"//c-toxcore/toxcore:tox",
|
|
|
|
"@libconfig",
|
|
|
|
],
|
|
|
|
)
|