Skip to content

Commit

Permalink
more unused
Browse files Browse the repository at this point in the history
  • Loading branch information
keith committed Dec 5, 2024
1 parent 2565845 commit 1a7735b
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 20 deletions.
7 changes: 0 additions & 7 deletions apple/internal/apple_framework_import.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -256,13 +256,6 @@ def _apple_dynamic_framework_import_impl(ctx):
),
))

# Create apple_common.Objc provider.
transitive_objc_providers = [
dep[apple_common.Objc]
for dep in deps
if apple_common.Objc in dep
]

# Create CcInfo provider.
cc_info = framework_import_support.cc_info_with_dependencies(
actions = actions,
Expand Down
2 changes: 0 additions & 2 deletions apple/internal/ios_rules.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,6 @@ def _ios_framework_impl(ctx):
cc_features = cc_features,
cc_info = link_result.cc_info,
cc_toolchain = cc_toolchain,
objc_provider = link_result.objc,
rule_label = label,
),
partials.resources_partial(
Expand Down Expand Up @@ -1617,7 +1616,6 @@ def _ios_dynamic_framework_impl(ctx):
cc_features = cc_features,
cc_info = link_result.cc_info,
cc_toolchain = cc_toolchain,
objc_provider = link_result.objc,
rule_label = label,
),
partials.resources_partial(
Expand Down
2 changes: 0 additions & 2 deletions apple/internal/macos_rules.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -2933,7 +2933,6 @@ def _macos_framework_impl(ctx):
cc_features = cc_features,
cc_info = link_result.cc_info,
cc_toolchain = cc_toolchain,
objc_provider = link_result.objc,
rule_label = label,
),
partials.resources_partial(
Expand Down Expand Up @@ -3210,7 +3209,6 @@ def _macos_dynamic_framework_impl(ctx):
cc_features = cc_features,
cc_info = link_result.cc_info,
cc_toolchain = cc_toolchain,
objc_provider = link_result.objc,
rule_label = label,
),
partials.resources_partial(
Expand Down
2 changes: 0 additions & 2 deletions apple/internal/partials/framework_provider.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ load(
"framework_import_support",
)


def _framework_provider_partial_impl(
*,
actions,
Expand All @@ -38,7 +37,6 @@ def _framework_provider_partial_impl(
cc_features,
cc_info,
cc_toolchain,
objc_provider,
rule_label):
"""Implementation for the framework provider partial."""

Expand Down
2 changes: 0 additions & 2 deletions apple/internal/tvos_rules.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,6 @@ def _tvos_dynamic_framework_impl(ctx):
cc_features = cc_features,
cc_info = link_result.cc_info,
cc_toolchain = cc_toolchain,
objc_provider = link_result.objc,
rule_label = label,
),
partials.resources_partial(
Expand Down Expand Up @@ -951,7 +950,6 @@ def _tvos_framework_impl(ctx):
cc_features = cc_features,
cc_info = link_result.cc_info,
cc_toolchain = cc_toolchain,
objc_provider = link_result.objc,
rule_label = label,
),
partials.resources_partial(
Expand Down
2 changes: 0 additions & 2 deletions apple/internal/visionos_rules.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,6 @@ def _visionos_dynamic_framework_impl(ctx):
cc_features = cc_features,
cc_info = link_result.cc_info,
cc_toolchain = cc_toolchain,
objc_provider = link_result.objc,
rule_label = label,
),
partials.resources_partial(
Expand Down Expand Up @@ -956,7 +955,6 @@ def _visionos_framework_impl(ctx):
cc_features = cc_features,
cc_info = link_result.cc_info,
cc_toolchain = cc_toolchain,
objc_provider = link_result.objc,
rule_label = label,
),
partials.resources_partial(
Expand Down
3 changes: 0 additions & 3 deletions apple/internal/watchos_rules.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ load(
"SwiftInfo",
)


def _watchos_framework_impl(ctx):
"""Experimental implementation of watchos_framework."""
rule_descriptor = rule_support.rule_descriptor(
Expand Down Expand Up @@ -328,7 +327,6 @@ def _watchos_framework_impl(ctx):
cc_features = cc_features,
cc_info = link_result.cc_info,
cc_toolchain = cc_toolchain,
objc_provider = link_result.objc,
rule_label = label,
),
partials.resources_partial(
Expand Down Expand Up @@ -604,7 +602,6 @@ def _watchos_dynamic_framework_impl(ctx):
cc_features = cc_features,
cc_info = link_result.cc_info,
cc_toolchain = cc_toolchain,
objc_provider = link_result.objc,
rule_label = label,
),
partials.resources_partial(
Expand Down

0 comments on commit 1a7735b

Please sign in to comment.