Skip to content

Commit 02fde3a

Browse files
authored
[bazel] Fix for #134298 (#135114)
1 parent 747d4a9 commit 02fde3a

File tree

1 file changed

+10
-0
lines changed
  • utils/bazel/llvm-project-overlay/clang-tools-extra/clang-doc

1 file changed

+10
-0
lines changed

utils/bazel/llvm-project-overlay/clang-tools-extra/clang-doc/BUILD.bazel

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,22 @@ package(
1111

1212
licenses(["notice"])
1313

14+
cc_library(
15+
name = "clang-doc-support",
16+
srcs = glob(["support/*.cpp"]),
17+
hdrs = glob(["support/*.h"]),
18+
deps = [
19+
"//llvm:Support",
20+
],
21+
)
22+
1423
cc_library(
1524
name = "lib",
1625
srcs = glob(["*.cpp"]),
1726
hdrs = glob(["*.h"]),
1827
includes = ["."],
1928
deps = [
29+
":clang-doc-support",
2030
"//clang:ast",
2131
"//clang:basic",
2232
"//clang:frontend",

0 commit comments

Comments
 (0)