summaryrefslogtreecommitdiff
path: root/other/BUILD
blob: 223f43556193ba8793c3f0585a4cbbe316de49c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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",
    ],
)

cc_library(
    name = "bootstrap_node_packets",
    srcs = ["bootstrap_node_packets.c"],
    hdrs = ["bootstrap_node_packets.h"],
    visibility = ["//c-toxcore/other/bootstrap_daemon:__pkg__"],
    deps = ["//c-toxcore/toxcore"],
)

cc_binary(
    name = "DHT_bootstrap",
    srcs = ["DHT_bootstrap.c"],
    deps = [
        "//c-toxcore/testing:misc_tools",
        "//c-toxcore/toxcore",
    ],
)