diff --git a/rules/hmap.bzl b/rules/hmap.bzl index 9af2bf0d..8e26bb7b 100644 --- a/rules/hmap.bzl +++ b/rules/hmap.bzl @@ -78,22 +78,12 @@ def _make_headermap_impl(ctx): cc_info_provider = CcInfo( compilation_context = compilation_context, ) - swift_info_provider = swift_common.create_swift_info( - modules = [swift_common.create_module( - name = ctx.attr.name, - clang = swift_common.create_clang_module( - compilation_context = compilation_context, - module_map = None, - ), - )], - ) providers = [ DefaultInfo( files = depset([headermap]), ), apple_common.new_objc_provider(), cc_info_provider, - swift_info_provider, ] hdrs_lists = [l for l in hdrs_lists if l]