blob: 419c615da2ee2f89549a6f9d915dd04b7dd63f44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
static_library("Inclusions") {
output_name = "clangToolingInclusions"
configs += [ "//llvm/utils/gn/build:clang_code" ]
deps = [
"//clang/lib/Basic",
"//clang/lib/Lex",
"//clang/lib/Rewrite",
"//clang/lib/Tooling/Core",
"//llvm/lib/Support",
]
sources = [
"HeaderIncludes.cpp",
"IncludeStyle.cpp",
]
}
|