File tree Expand file tree Collapse file tree 4 files changed +20
-1
lines changed
llvm/utils/gn/secondary/clang Expand file tree Collapse file tree 4 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ static_library("ExtractAPI") {
6
6
" //clang/lib/Basic" ,
7
7
" //clang/lib/Frontend" ,
8
8
" //clang/lib/Index" ,
9
+ " //clang/lib/InstallAPI" ,
9
10
" //llvm/lib/Support" ,
10
11
" //llvm/lib/TargetParser" ,
11
12
]
Original file line number Diff line number Diff line change @@ -6,5 +6,9 @@ static_library("InstallAPI") {
6
6
" //llvm/lib/Support" ,
7
7
" //llvm/lib/TextAPI" ,
8
8
]
9
- sources = [ " Context.cpp" ]
9
+ sources = [
10
+ " Context.cpp" ,
11
+ " FileList.cpp" ,
12
+ " HeaderFile.cpp" ,
13
+ ]
10
14
}
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ group("unittests") {
13
13
" Format:FormatTests" ,
14
14
" Frontend:FrontendTests" ,
15
15
" Index:IndexTests" ,
16
+ " InstallAPI:InstallAPITests" ,
16
17
" Interpreter:ClangReplInterpreterTests" ,
17
18
" Introspection:IntrospectionTests" ,
18
19
" Lex:LexTests" ,
Original file line number Diff line number Diff line change
1
+ import (" //third-party/unittest/unittest.gni" )
2
+
3
+ unittest (" InstallAPITests" ) {
4
+ configs += [ " //llvm/utils/gn/build:clang_code" ]
5
+ deps = [
6
+ " //clang/lib/InstallAPI" ,
7
+ " //llvm/lib/Testing/Support" ,
8
+ ]
9
+ sources = [
10
+ " HeaderFileTest.cpp" ,
11
+ " FileListTest.cpp" ,
12
+ ]
13
+ }
You can’t perform that action at this time.
0 commit comments