From 066aafbfcdf5cbe4176e6a7e0ba58033a6576378 Mon Sep 17 00:00:00 2001 From: Green Sky Date: Fri, 28 Mar 2025 15:05:13 +0100 Subject: [PATCH] fix(bazel): make net_prof visible to its consumers --- toxcore/BUILD.bazel | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/toxcore/BUILD.bazel b/toxcore/BUILD.bazel index 6c83a2c2bc..e1720be7ce 100644 --- a/toxcore/BUILD.bazel +++ b/toxcore/BUILD.bazel @@ -358,6 +358,10 @@ cc_library( name = "net_profile", srcs = ["net_profile.c"], hdrs = ["net_profile.h"], + visibility = [ + "//c-toxcore/auto_tests:__pkg__", + "//c-toxcore/testing/fuzzing:__pkg__", + ], deps = [ ":attributes", ":ccompat",