File tree Expand file tree Collapse file tree 5 files changed +26
-0
lines changed
llvm/utils/gn/secondary/llvm Expand file tree Collapse file tree 5 files changed +26
-0
lines changed Original file line number Diff line number Diff line change
1
+ static_library (" DWARFLinkerParallel" ) {
2
+ output_name = " LLVMDWARFLinkerParallel"
3
+ deps = [
4
+ " //llvm/lib/BinaryFormat" ,
5
+ " //llvm/lib/CodeGen" ,
6
+ " //llvm/lib/CodeGen/AsmPrinter" ,
7
+ " //llvm/lib/DebugInfo/DWARF" ,
8
+ " //llvm/lib/MC" ,
9
+ " //llvm/lib/Object" ,
10
+ " //llvm/lib/Support" ,
11
+ ]
12
+ sources = [ " DWARFLinker.cpp" ]
13
+ }
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ executable("dsymutil") {
10
10
" :Options" ,
11
11
" //llvm/lib/CodeGen/AsmPrinter" ,
12
12
" //llvm/lib/DWARFLinker" ,
13
+ " //llvm/lib/DWARFLinkerParallel" ,
13
14
" //llvm/lib/DebugInfo/DWARF" ,
14
15
" //llvm/lib/MC" ,
15
16
" //llvm/lib/Object" ,
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ executable("llvm-dwarfutil") {
9
9
deps = [
10
10
" :Options" ,
11
11
" //llvm/lib/DWARFLinker" ,
12
+ " //llvm/lib/DWARFLinkerParallel" ,
12
13
" //llvm/lib/DebugInfo/DWARF" ,
13
14
" //llvm/lib/MC" ,
14
15
" //llvm/lib/ObjCopy" ,
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ group("unittests") {
10
10
" Bitstream:BitstreamTests" ,
11
11
" CodeGen:CodeGenTests" ,
12
12
" CodeGen/GlobalISel:GlobalISelTests" ,
13
+ " DWARFLinkerParallel:DWARFLinkerParallelTests" ,
13
14
" DebugInfo/CodeView:DebugInfoCodeViewTests" ,
14
15
" DebugInfo/DWARF:DebugInfoDWARFTests" ,
15
16
" DebugInfo/GSYM:DebugInfoGSYMTests" ,
Original file line number Diff line number Diff line change
1
+ import (" //third-party/unittest/unittest.gni" )
2
+
3
+ unittest (" DWARFLinkerParallelTests" ) {
4
+ deps = [
5
+ " //llvm/lib/DWARFLinkerParallel" ,
6
+ " //llvm/lib/Support" ,
7
+ " //llvm/lib/Testing/Support" ,
8
+ ]
9
+ sources = [ " DWARFLinkerTest.cpp" ]
10
+ }
You can’t perform that action at this time.
0 commit comments