Skip to content

Commit

Permalink
Return AppleResourceBundleInfo provider from `apple_precompiled_res…
Browse files Browse the repository at this point in the history
…ource_bundle` (#2569)

Signed-off-by: Brentley Jones <[email protected]>
  • Loading branch information
brentleyjones authored Oct 25, 2024
1 parent 0493268 commit 145b171
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ load(
"@build_bazel_rules_apple//apple/internal:platform_support.bzl",
"platform_support",
)
load(
"@build_bazel_rules_apple//apple/internal:providers.bzl",
"new_appleresourcebundleinfo",
)
load(
"@build_bazel_rules_apple//apple/internal:resources.bzl",
"resources",
Expand Down Expand Up @@ -196,7 +200,9 @@ def _apple_precompiled_resource_bundle_impl(ctx):
),
)

providers = []
providers = [
new_appleresourcebundleinfo(),
]
if apple_resource_infos:
# If any providers were collected, merge them.
providers.append(
Expand Down

0 comments on commit 145b171

Please sign in to comment.