[llvm] [bazel] Fix after #181026 (PR #181260)

via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 12 14:53:14 PST 2026


https://github.com/DeanSturtevant1 created https://github.com/llvm/llvm-project/pull/181260

None

>From 93689e4bcbef747d3a0dc417a4259c22e64eaab4 Mon Sep 17 00:00:00 2001
From: Dean Sturtevant <dsturtevant at google.com>
Date: Thu, 12 Feb 2026 16:51:30 -0500
Subject: [PATCH] [bazel] Fix after #181026

---
 .../llvm-project-overlay/lldb/source/Plugins/BUILD.bazel    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/utils/bazel/llvm-project-overlay/lldb/source/Plugins/BUILD.bazel b/utils/bazel/llvm-project-overlay/lldb/source/Plugins/BUILD.bazel
index c2027f7632eb9..1177853d9563c 100644
--- a/utils/bazel/llvm-project-overlay/lldb/source/Plugins/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/lldb/source/Plugins/BUILD.bazel
@@ -14,9 +14,9 @@ package(
 licenses(["notice"])
 
 cc_library(
-    name = "PluginClangCommon",
-    srcs = glob(["Language/ClangCommon/*.cpp"]),
-    hdrs = glob(["Language/ClangCommon/*.h"]),
+    name = "PluginClangHighlighter",
+    srcs = glob(["Highlighter/Clang/*.cpp"]),
+    hdrs = glob(["Highlighter/Clang/*.h"]),
     includes = [".."],
     deps = [
         "//clang:basic",



More information about the llvm-commits mailing list