From fc57871ebde16565b9e7b3059ba92eeb2399049c Mon Sep 17 00:00:00 2001 From: Luis Padron Date: Mon, 12 Aug 2024 17:24:38 -0400 Subject: [PATCH] Revert "Add headers to `headermap` action `inputs`" (#893) Reverts bazel-ios/rules_ios#888 --- rules/hmap.bzl | 7 ------- 1 file changed, 7 deletions(-) diff --git a/rules/hmap.bzl b/rules/hmap.bzl index f5b970d..1abcbe5 100644 --- a/rules/hmap.bzl +++ b/rules/hmap.bzl @@ -32,16 +32,9 @@ def _make_hmap(actions, headermap_builder, output, namespace, hdrs_lists): args.set_param_file_format(format = "multiline") args.use_param_file("@%s") - headers = [ - header - for header_list in hdrs_lists - for header in header_list - ] - actions.run( mnemonic = "HmapCreate", arguments = [args], - inputs = headers, executable = headermap_builder, outputs = [output], )