forked from OSchip/llvm-project
[clang] Update BUILD.bazel after 89f6b26f1b
.
This commit is contained in:
parent
2985d1c267
commit
5bcc90ee61
|
@ -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",
|
||||
],
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue