[bazel] Remove useless exclusion from glob (NFC)

The excluded file doesn't match the glob pattern to begin with, so it's
unnecessary.
This commit is contained in:
Jorge Gorbe Moya
2025-01-16 11:40:07 -08:00
parent d951becf88
commit 842ce4efdd

View File

@@ -1954,12 +1954,7 @@ cc_library(
],
exclude = ["lib/Interpreter/Wasm.cpp"],
),
hdrs = glob(
[
"include/clang/Interpreter/*.h",
],
exclude = ["lib/Interpreter/Wasm.cpp"],
),
hdrs = glob(["include/clang/Interpreter/*.h"]),
includes = ["include"],
deps = [
":analysis",