mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-01 12:43:47 +00:00
[gn build] (manually) port 5aab45f43066 (SymbolGraph)
This commit is contained in:
parent
1458458b55
commit
668d880f59
@ -29,7 +29,6 @@ static_library("Frontend") {
|
||||
"DependencyFile.cpp",
|
||||
"DependencyGraph.cpp",
|
||||
"DiagnosticRenderer.cpp",
|
||||
"ExtractAPIConsumer.cpp",
|
||||
"FrontendAction.cpp",
|
||||
"FrontendActions.cpp",
|
||||
"FrontendOptions.cpp",
|
||||
|
@ -14,6 +14,7 @@ static_library("FrontendTool") {
|
||||
"//clang/lib/Driver",
|
||||
"//clang/lib/Frontend",
|
||||
"//clang/lib/Frontend/Rewrite",
|
||||
"//clang/lib/SymbolGraph",
|
||||
"//llvm/lib/Option",
|
||||
"//llvm/lib/Support",
|
||||
]
|
||||
|
17
llvm/utils/gn/secondary/clang/lib/SymbolGraph/BUILD.gn
Normal file
17
llvm/utils/gn/secondary/clang/lib/SymbolGraph/BUILD.gn
Normal file
@ -0,0 +1,17 @@
|
||||
static_library("SymbolGraph") {
|
||||
output_name = "clangSymbolGraph"
|
||||
configs += [ "//llvm/utils/gn/build:clang_code" ]
|
||||
deps = [
|
||||
"//clang/lib/AST",
|
||||
"//clang/lib/Basic",
|
||||
"//clang/lib/Frontend",
|
||||
"//clang/lib/Index",
|
||||
"//llvm/lib/Support",
|
||||
]
|
||||
sources = [
|
||||
"API.cpp",
|
||||
"ExtractAPIConsumer.cpp",
|
||||
"DeclarationFragments.cpp",
|
||||
"Serialization.cpp",
|
||||
]
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user