summaryrefslogtreecommitdiff
path: root/other/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'other/BUILD')
-rw-r--r--other/BUILD17
1 files changed, 17 insertions, 0 deletions
diff --git a/other/BUILD b/other/BUILD
index 5c8997ec..223f4355 100644
--- a/other/BUILD
+++ b/other/BUILD
@@ -8,3 +8,20 @@ cc_library(
8 "//c-toxcore/toxencryptsave:monolith", 8 "//c-toxcore/toxencryptsave:monolith",
9 ], 9 ],
10) 10)
11
12cc_library(
13 name = "bootstrap_node_packets",
14 srcs = ["bootstrap_node_packets.c"],
15 hdrs = ["bootstrap_node_packets.h"],
16 visibility = ["//c-toxcore/other/bootstrap_daemon:__pkg__"],
17 deps = ["//c-toxcore/toxcore"],
18)
19
20cc_binary(
21 name = "DHT_bootstrap",
22 srcs = ["DHT_bootstrap.c"],
23 deps = [
24 "//c-toxcore/testing:misc_tools",
25 "//c-toxcore/toxcore",
26 ],
27)