From cc8a96a94c048526d4b74274092e2a69d6875ef0 Mon Sep 17 00:00:00 2001 From: Michael Carroll Date: Thu, 10 Aug 2023 16:17:24 +0000 Subject: [PATCH] Fix visibility Signed-off-by: Michael Carroll --- test/BUILD.bazel | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/test/BUILD.bazel b/test/BUILD.bazel index 2cd16e5cc..c2d87d12d 100644 --- a/test/BUILD.bazel +++ b/test/BUILD.bazel @@ -1,9 +1,17 @@ load( "@gz//bazel/skylark:build_defs.bzl", "GZ_ROOT", + "GZ_VISIBILITY", + "GZ_FEATURES", "cmake_configure_file", ) +package( + default_visibility = GZ_VISIBILITY, + features = GZ_FEATURES, +) + + licenses(["notice"]) cmake_configure_file( @@ -21,7 +29,10 @@ cc_library( "test_utils.hh", ], includes = ["."], - visibility = ["//visibility:public"], + deps = [ + GZ_ROOT + "utils:utils", + GZ_ROOT + "sdformat:sdformat" + ] ) integration_test_sources = glob(