[clang] Update BUILD.bazel after 89f6b26f1b.

This commit is contained in:
Alexander Belyaev 2022-03-23 09:46:40 +01:00
parent 2985d1c267
commit 5bcc90ee61
1 changed files with 22 additions and 19 deletions

View File

@ -1284,24 +1284,6 @@ cc_library(
],
)
cc_library(
name = "symbol_graph",
srcs = glob([
"lib/SymbolGraph/*.cpp",
]),
hdrs = glob([
"include/clang/SymbolGraph/*.h",
]),
includes = ["include"],
deps = [
":ast",
":basic",
":frontend",
":index",
"//llvm:Support",
],
)
gentbl(
name = "driver_options_inc_gen",
tbl_outs = [(
@ -1731,10 +1713,10 @@ cc_library(
":codegen",
":config",
":driver",
":extract_api",
":frontend",
":frontend_rewrite",
":static_analyzer_frontend",
":symbol_graph",
"//llvm:Option",
"//llvm:Support",
],
@ -2161,3 +2143,24 @@ cc_binary(
"//llvm:Support",
],
)
cc_library(
name = "extract_api",
srcs = glob([
"lib/ExtractAPI/*.cpp",
"lib/ExtractAPI/*.h",
"lib/ExtractAPI/**/*.cpp",
"lib/ExtractAPI/**/*.h",
]),
hdrs = glob(["include/clang/ExtractAPI/**/*.h"]),
includes = ["include"],
visibility = ["//third_party/llvm/google3_users:clang_api_users"],
deps = [
":ast",
":index",
":basic",
":frontend",
"//third_party/llvm/llvm-project/llvm:Option",
"//third_party/llvm/llvm-project/llvm:Support",
],
)