From 91b976ebbf9a90765fb5b2a442845a671d8d571c Mon Sep 17 00:00:00 2001 From: Jonathan Dierksen <1507580+dierksen@users.noreply.github.com> Date: Sat, 12 Nov 2022 13:14:00 -0600 Subject: [PATCH] Allow for deps with only CcInfo on framework imports (#1751) --- 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 0ff324fb88..9d8f07c7e1 100644 --- a/apple/internal/apple_framework_import.bzl +++ b/apple/internal/apple_framework_import.bzl @@ -741,6 +741,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], ], @@ -832,6 +833,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], ],