From ae9a5553673860f57319cd9fc6cc665762ca63f2 Mon Sep 17 00:00:00 2001 From: Jon Janzen Date: Tue, 1 Oct 2024 15:32:34 -0700 Subject: [PATCH] Remove AutoHeaders.RECURSIVE_GLOB Summary: In the previous diff I removed the last usage of this "feature". Now that it has been removed, let's clean up all the supporting code. Reviewed By: zertosh Differential Revision: D63264958 fbshipit-source-id: 35d83937c55c3a062146ea6cdb2d66dc90b271c9 --- shim/build_defs/auto_headers.bzl | 4 ---- 1 file changed, 4 deletions(-) diff --git a/shim/build_defs/auto_headers.bzl b/shim/build_defs/auto_headers.bzl index 052604136..3c1324a6e 100644 --- a/shim/build_defs/auto_headers.bzl +++ b/shim/build_defs/auto_headers.bzl @@ -9,16 +9,12 @@ load("@prelude//utils:buckconfig.bzl", "read_choice") AutoHeaders = struct( NONE = "none", - # Uses a recursive glob to resolve all transitive headers under the given - # directory. - RECURSIVE_GLOB = "recursive_glob", # Infer headers from sources of the rule. SOURCES = "sources", ) _VALUES = [ AutoHeaders.NONE, - AutoHeaders.RECURSIVE_GLOB, AutoHeaders.SOURCES, ]