From 003a33be1588626549f8d975f5d858ac3e15f0db Mon Sep 17 00:00:00 2001 From: Luis Padron Date: Mon, 12 Aug 2024 16:53:32 -0400 Subject: [PATCH] Revert "Add headers to `headermap` action `inputs` (#888)" This reverts commit 3558642769c6fc84887aeca3acfbd53528dabb6d. --- rules/hmap.bzl | 7 ------- 1 file changed, 7 deletions(-) diff --git a/rules/hmap.bzl b/rules/hmap.bzl index f5b970d1..1abcbe57 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], )