summaryrefslogtreecommitdiff
path: root/testing/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'testing/BUILD.bazel')
-rw-r--r--testing/BUILD.bazel10
1 files changed, 8 insertions, 2 deletions
diff --git a/testing/BUILD.bazel b/testing/BUILD.bazel
index 34f2d44c..5a2a0194 100644
--- a/testing/BUILD.bazel
+++ b/testing/BUILD.bazel
@@ -1,5 +1,4 @@
1load("@rules_cc//cc:defs.bzl", "cc_binary") 1load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
2load("//tools:no_undefined.bzl", "cc_library")
3 2
4cc_library( 3cc_library(
5 name = "misc_tools", 4 name = "misc_tools",
@@ -9,6 +8,13 @@ cc_library(
9 deps = ["//c-toxcore/toxcore"], 8 deps = ["//c-toxcore/toxcore"],
10) 9)
11 10
11cc_library(
12 name = "trace",
13 srcs = ["trace.cc"],
14 visibility = ["//c-toxcore:__subpackages__"],
15 alwayslink = True,
16)
17
12cc_binary( 18cc_binary(
13 name = "DHT_test", 19 name = "DHT_test",
14 srcs = ["DHT_test.c"], 20 srcs = ["DHT_test.c"],