From 5e6fa09f1c8616c5d2f14aca656a9232aec14321 Mon Sep 17 00:00:00 2001 From: Matt W <436037+mlw@users.noreply.github.com> Date: Wed, 3 Jan 2024 10:21:33 -0500 Subject: [PATCH] Change build target visibility (#1264) * Change build target visibility * Add dependent headers as srcs. Remove unnecessary visibility. --- Source/santactl/BUILD | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Source/santactl/BUILD b/Source/santactl/BUILD index 231f253ef..a02237843 100644 --- a/Source/santactl/BUILD +++ b/Source/santactl/BUILD @@ -150,7 +150,12 @@ santa_unit_test( santa_unit_test( name = "SNTCommandRuleTest", - srcs = ["Commands/SNTCommandRuleTest.mm"], + srcs = [ + "Commands/SNTCommand.h", + "Commands/SNTCommandController.h", + "Commands/SNTCommandRule.h", + "Commands/SNTCommandRuleTest.mm", + ], deps = [ ":santactl_lib", "//Source/common:SNTCommonEnums",