summaryrefslogtreecommitdiff
path: root/other/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'other/BUILD.bazel')
-rw-r--r--other/BUILD.bazel29
1 files changed, 29 insertions, 0 deletions
diff --git a/other/BUILD.bazel b/other/BUILD.bazel
new file mode 100644
index 00000000..beec2397
--- /dev/null
+++ b/other/BUILD.bazel
@@ -0,0 +1,29 @@
1load("//tools:no_undefined.bzl", "cc_library")
2
3cc_library(
4 name = "monolith",
5 hdrs = ["monolith.h"],
6 visibility = ["//c-toxcore/auto_tests:__pkg__"],
7 deps = [
8 "//c-toxcore/toxav:monolith",
9 "//c-toxcore/toxcore:monolith",
10 "//c-toxcore/toxencryptsave:monolith",
11 ],
12)
13
14cc_library(
15 name = "bootstrap_node_packets",
16 srcs = ["bootstrap_node_packets.c"],
17 hdrs = ["bootstrap_node_packets.h"],
18 visibility = ["//c-toxcore/other/bootstrap_daemon:__pkg__"],
19 deps = ["//c-toxcore/toxcore:network"],
20)
21
22cc_binary(
23 name = "DHT_bootstrap",
24 srcs = ["DHT_bootstrap.c"],
25 deps = [
26 "//c-toxcore/testing:misc_tools",
27 "//c-toxcore/toxcore",
28 ],
29)