File tree Expand file tree Collapse file tree 3 files changed +17
-0
lines changed
llvm/utils/gn/secondary/llvm Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -3,5 +3,6 @@ static_library("OpenMP") {
3
3
4
4
sources = [
5
5
" OMPConstants.cpp" ,
6
+ " OMPIRBuilder.cpp" ,
6
7
]
7
8
}
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ group("unittests") {
20
20
" ExecutionEngine/JITLink:JITLinkTests" ,
21
21
" ExecutionEngine/MCJIT:MCJITTests" ,
22
22
" ExecutionEngine/Orc:OrcJITTests" ,
23
+ " Frontend:LLVMFrontendTests" ,
23
24
" FuzzMutate:FuzzMutateTests" ,
24
25
" IR:IRTests" ,
25
26
" LineEditor:LineEditorTests" ,
Original file line number Diff line number Diff line change
1
+ import (" //llvm/utils/unittest/unittest.gni" )
2
+
3
+ unittest (" LLVMFrontendTests" ) {
4
+ deps = [
5
+ " //llvm/lib/Analysis" ,
6
+ " //llvm/lib/IR" ,
7
+ " //llvm/lib/Frontend/OpenMP" ,
8
+ " //llvm/lib/Passes" ,
9
+ " //llvm/lib/Support" ,
10
+ " //llvm/lib/Testing/Support" ,
11
+ ]
12
+ sources = [
13
+ " OpenMPIRBuilderTest.cpp" ,
14
+ ]
15
+ }
You can’t perform that action at this time.
0 commit comments