summaryrefslogtreecommitdiff
path: root/utils/bazel
diff options
context:
space:
mode:
authorJordan Rupprecht <rupprecht@google.com>2025-11-20 21:39:49 -0600
committerGitHub <noreply@github.com>2025-11-21 03:39:49 +0000
commit3d3307ecd8bdd6d9af0d82245c5fc50e4d624a7a (patch)
tree2c738efd6be6d43ee9cd4e9f5da917ef5bcb952c /utils/bazel
parentbf4dc96bc15464fc4af9dde3a5a686a129abfdbd (diff)
[clang][NFC] Inline Frontend/FrontendDiagnostic.h -> Basic/DiagnosticFrontend.h (#162883)
d076608d58d1ec55016eb747a995511e3a3f72aa moved some deps around to avoid cycles and left clang/Frontend/FrontendDiagnostic.h as a shim that simply includes clang/Basic/DiagnosticFrontend.h. This PR inlines it so that nothing in tree still includes clang/Frontend/FrontendDiagnostic.h. Doing this will help prevent future layering issues. See #162865. Frontend already depends on Basic, so no new deps need to be added anywhere except for places that do strict dep checking.
Diffstat (limited to 'utils/bazel')
-rw-r--r--utils/bazel/llvm-project-overlay/clang/BUILD.bazel1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/bazel/llvm-project-overlay/clang/BUILD.bazel b/utils/bazel/llvm-project-overlay/clang/BUILD.bazel
index 0dca7a84fb3d..8d8d367cb490 100644
--- a/utils/bazel/llvm-project-overlay/clang/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/clang/BUILD.bazel
@@ -2015,6 +2015,7 @@ cc_library(
hdrs = glob(["include/clang/FrontendTool/*.h"]),
includes = ["include"],
deps = [
+ ":basic",
":codegen",
":config",
":driver",