2018-01-22 00:58:32 +08:00
|
|
|
load("//tools:no_undefined.bzl", "cc_library")
|
|
|
|
|
2018-01-18 23:14:50 +08:00
|
|
|
cc_library(
|
|
|
|
name = "monolith",
|
|
|
|
hdrs = ["monolith.h"],
|
|
|
|
visibility = ["//c-toxcore/auto_tests:__pkg__"],
|
|
|
|
deps = [
|
|
|
|
"//c-toxcore/toxav:monolith",
|
|
|
|
"//c-toxcore/toxcore:monolith",
|
|
|
|
"//c-toxcore/toxencryptsave:monolith",
|
|
|
|
],
|
|
|
|
)
|
2018-01-21 09:05:23 +08:00
|
|
|
|
|
|
|
cc_library(
|
|
|
|
name = "bootstrap_node_packets",
|
|
|
|
srcs = ["bootstrap_node_packets.c"],
|
|
|
|
hdrs = ["bootstrap_node_packets.h"],
|
|
|
|
visibility = ["//c-toxcore/other/bootstrap_daemon:__pkg__"],
|
2018-01-22 00:58:32 +08:00
|
|
|
deps = ["//c-toxcore/toxcore:network"],
|
2018-01-21 09:05:23 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
cc_binary(
|
|
|
|
name = "DHT_bootstrap",
|
|
|
|
srcs = ["DHT_bootstrap.c"],
|
|
|
|
deps = [
|
|
|
|
"//c-toxcore/testing:misc_tools",
|
|
|
|
"//c-toxcore/toxcore",
|
|
|
|
],
|
|
|
|
)
|