From 8c0f4ff2bd2c8b48809e455c8fdd4e84305bd481 Mon Sep 17 00:00:00 2001 From: Jonathan Dierksen <1507580+dierksen@users.noreply.github.com> Date: Thu, 10 Nov 2022 15:21:58 -0600 Subject: [PATCH] Allow for deps with only CcInfo on framework imports --- apple/internal/apple_framework_import.bzl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apple/internal/apple_framework_import.bzl b/apple/internal/apple_framework_import.bzl index dc02e6ac78..0eb8c4ece8 100644 --- a/apple/internal/apple_framework_import.bzl +++ b/apple/internal/apple_framework_import.bzl @@ -433,6 +433,7 @@ A list of targets that are dependencies of the target being built, which will be target. """, providers = [ + [CcInfo], [apple_common.Objc, CcInfo], [apple_common.Objc, CcInfo, AppleFrameworkImportInfo], ], @@ -525,6 +526,7 @@ A list of targets that are dependencies of the target being built, which will pr linked into that target. """, providers = [ + [CcInfo], [apple_common.Objc, CcInfo], [apple_common.Objc, CcInfo, AppleFrameworkImportInfo], ],