Skip to content

Commit 5bcc90e

Browse files
committed
[clang] Update BUILD.bazel after 89f6b26.
1 parent 2985d1c commit 5bcc90e

File tree

1 file changed

+22
-19
lines changed

1 file changed

+22
-19
lines changed

utils/bazel/llvm-project-overlay/clang/BUILD.bazel

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1284,24 +1284,6 @@ cc_library(
12841284
],
12851285
)
12861286

1287-
cc_library(
1288-
name = "symbol_graph",
1289-
srcs = glob([
1290-
"lib/SymbolGraph/*.cpp",
1291-
]),
1292-
hdrs = glob([
1293-
"include/clang/SymbolGraph/*.h",
1294-
]),
1295-
includes = ["include"],
1296-
deps = [
1297-
":ast",
1298-
":basic",
1299-
":frontend",
1300-
":index",
1301-
"//llvm:Support",
1302-
],
1303-
)
1304-
13051287
gentbl(
13061288
name = "driver_options_inc_gen",
13071289
tbl_outs = [(
@@ -1731,10 +1713,10 @@ cc_library(
17311713
":codegen",
17321714
":config",
17331715
":driver",
1716+
":extract_api",
17341717
":frontend",
17351718
":frontend_rewrite",
17361719
":static_analyzer_frontend",
1737-
":symbol_graph",
17381720
"//llvm:Option",
17391721
"//llvm:Support",
17401722
],
@@ -2161,3 +2143,24 @@ cc_binary(
21612143
"//llvm:Support",
21622144
],
21632145
)
2146+
2147+
cc_library(
2148+
name = "extract_api",
2149+
srcs = glob([
2150+
"lib/ExtractAPI/*.cpp",
2151+
"lib/ExtractAPI/*.h",
2152+
"lib/ExtractAPI/**/*.cpp",
2153+
"lib/ExtractAPI/**/*.h",
2154+
]),
2155+
hdrs = glob(["include/clang/ExtractAPI/**/*.h"]),
2156+
includes = ["include"],
2157+
visibility = ["//third_party/llvm/google3_users:clang_api_users"],
2158+
deps = [
2159+
":ast",
2160+
":index",
2161+
":basic",
2162+
":frontend",
2163+
"//third_party/llvm/llvm-project/llvm:Option",
2164+
"//third_party/llvm/llvm-project/llvm:Support",
2165+
],
2166+
)

0 commit comments

Comments
 (0)