From eb7b9d4d83a8b4239f218b9a546bc592cf897c92 Mon Sep 17 00:00:00 2001 From: Reinhard Huang Date: Wed, 21 Feb 2024 16:56:37 +0800 Subject: [PATCH] fix dynamic framework loss in implementation_deps --- apple/internal/aspects/framework_provider_aspect.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apple/internal/aspects/framework_provider_aspect.bzl b/apple/internal/aspects/framework_provider_aspect.bzl index e8c5846de6..26acc384ed 100644 --- a/apple/internal/aspects/framework_provider_aspect.bzl +++ b/apple/internal/aspects/framework_provider_aspect.bzl @@ -29,7 +29,7 @@ load( # these are supported by `objc_library` for frameworks that should be present in the bundle, but not # linked against. # TODO(b/120205406): Remove `runtime_deps` support to use objc_library/swift_library `data` instead. -_FRAMEWORK_PROVIDERS_ASPECT_ATTRS = ["deps", "frameworks", "private_deps", "runtime_deps", "data"] +_FRAMEWORK_PROVIDERS_ASPECT_ATTRS = ["deps", "frameworks", "private_deps", "implementation_deps", "runtime_deps", "data"] def _framework_provider_aspect_impl(target, ctx): """Implementation of the framework provider propagation aspect."""