From c64f2aa03959f7443dcd148a5b2407b32ae89daa Mon Sep 17 00:00:00 2001 From: Brentley Jones Date: Thu, 27 Feb 2025 11:42:26 -0600 Subject: [PATCH] Cache more resource processing by default Should remove the need for `apple_precompiled_resource_bundle`. Signed-off-by: Brentley Jones --- apple/internal/resources.bzl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apple/internal/resources.bzl b/apple/internal/resources.bzl index d8cc2dbe8..7b7dbcb15 100644 --- a/apple/internal/resources.bzl +++ b/apple/internal/resources.bzl @@ -93,10 +93,17 @@ load( ) _CACHEABLE_PROVIDER_FIELDS = [ + "asset_catalogs", + "datamodels", "infoplists", + "metals", + "mlmodels", "plists", "pngs", + "storyboards", "strings", + "texture_atlases", + "xibs", ] def _get_attr_using_list(*, attr, nested_attr, split_attr_key = None):