summaryrefslogtreecommitdiff
path: root/other
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-01-21 16:58:32 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-01-21 19:44:09 +0000
commit52778aed9391538287874b1f027994cef15b10d4 (patch)
tree4e54a20165b41a313ca197255e57af788a10f693 /other
parent6c98791563b41deebbd34bd35db2839d78f12c2c (diff)
Make BUILD files more finely-grained.
This allows us to precisely see which libraries depend on which and lets us split them up more, if necessary.
Diffstat (limited to 'other')
-rw-r--r--other/BUILD4
1 files changed, 3 insertions, 1 deletions
diff --git a/other/BUILD b/other/BUILD
index 223f4355..beec2397 100644
--- a/other/BUILD
+++ b/other/BUILD
@@ -1,3 +1,5 @@
1load("//tools:no_undefined.bzl", "cc_library")
2
1cc_library( 3cc_library(
2 name = "monolith", 4 name = "monolith",
3 hdrs = ["monolith.h"], 5 hdrs = ["monolith.h"],
@@ -14,7 +16,7 @@ cc_library(
14 srcs = ["bootstrap_node_packets.c"], 16 srcs = ["bootstrap_node_packets.c"],
15 hdrs = ["bootstrap_node_packets.h"], 17 hdrs = ["bootstrap_node_packets.h"],
16 visibility = ["//c-toxcore/other/bootstrap_daemon:__pkg__"], 18 visibility = ["//c-toxcore/other/bootstrap_daemon:__pkg__"],
17 deps = ["//c-toxcore/toxcore"], 19 deps = ["//c-toxcore/toxcore:network"],
18) 20)
19 21
20cc_binary( 22cc_binary(