From bbcdd6e1da739d5301ec72da30884fba740ea030 Mon Sep 17 00:00:00 2001 From: Matt White <436037+mlw@users.noreply.github.com> Date: Wed, 13 Sep 2023 21:58:11 -0400 Subject: [PATCH 1/2] Address internal build issues --- Source/common/BUILD | 1 + Source/gui/BUILD | 8 -------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/Source/common/BUILD b/Source/common/BUILD index 4cac281ad..6be1bfde4 100644 --- a/Source/common/BUILD +++ b/Source/common/BUILD @@ -251,6 +251,7 @@ santa_unit_test( srcs = ["SNTRuleTest.m"], deps = [ ":SNTCommonEnums", + ":SNTSyncConstants", ":SNTRule", ], ) diff --git a/Source/gui/BUILD b/Source/gui/BUILD index e1258b2a6..7c7dd00a1 100644 --- a/Source/gui/BUILD +++ b/Source/gui/BUILD @@ -31,13 +31,6 @@ swift_library( ], ) -objc_library( - name = "SecurityInterfaceImport", - sdk_frameworks = [ - "SecurityInterface", - ], -) - swift_library( name = "SNTFileAccessMessageWindowView", srcs = [ @@ -45,7 +38,6 @@ swift_library( ], generates_header = 1, deps = [ - ":SecurityInterfaceImport", "//Source/common:SNTFileAccessEvent", ], ) From d7cc79b012e1bac710f2015eadda9c4fecbe09f1 Mon Sep 17 00:00:00 2001 From: Matt White <436037+mlw@users.noreply.github.com> Date: Wed, 13 Sep 2023 21:59:15 -0400 Subject: [PATCH 2/2] lint --- Source/common/BUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/common/BUILD b/Source/common/BUILD index 6be1bfde4..655c78730 100644 --- a/Source/common/BUILD +++ b/Source/common/BUILD @@ -251,8 +251,8 @@ santa_unit_test( srcs = ["SNTRuleTest.m"], deps = [ ":SNTCommonEnums", - ":SNTSyncConstants", ":SNTRule", + ":SNTSyncConstants", ], )