summaryrefslogtreecommitdiff
path: root/testing/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'testing/BUILD.bazel')
-rw-r--r--testing/BUILD.bazel17
1 files changed, 13 insertions, 4 deletions
diff --git a/testing/BUILD.bazel b/testing/BUILD.bazel
index 117eb69d..4d0674b4 100644
--- a/testing/BUILD.bazel
+++ b/testing/BUILD.bazel
@@ -2,11 +2,10 @@ load("//tools:no_undefined.bzl", "cc_library")
2 2
3cc_library( 3cc_library(
4 name = "misc_tools", 4 name = "misc_tools",
5 hdrs = [ 5 srcs = ["misc_tools.c"],
6 "misc_tools.c", 6 hdrs = ["misc_tools.h"],
7 ],
8 visibility = ["//c-toxcore:__subpackages__"], 7 visibility = ["//c-toxcore:__subpackages__"],
9 deps = ["//c-toxcore/toxcore:ccompat"], 8 deps = ["//c-toxcore/toxcore"],
10) 9)
11 10
12cc_binary( 11cc_binary(
@@ -53,3 +52,13 @@ cc_binary(
53 "//c-toxcore/toxcore", 52 "//c-toxcore/toxcore",
54 ], 53 ],
55) 54)
55
56cc_library(
57 name = "monolith",
58 hdrs = [
59 "misc_tools.c",
60 "misc_tools.h",
61 ],
62 visibility = ["//c-toxcore/other:__pkg__"],
63 deps = ["//c-toxcore/toxcore"],
64)