summaryrefslogtreecommitdiff
path: root/other/BUILD.bazel
blob: 8bcdc4b4b45cff009d19c2a8a6d9b0d140cdd2f0 (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
28
29
30
load("//tools:no_undefined.bzl", "cc_library")

cc_library(
    name = "monolith",
    hdrs = ["monolith.h"],
    visibility = ["//c-toxcore/auto_tests:__pkg__"],
    deps = [
        "//c-toxcore/testing:monolith",
        "//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:network"],
)

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