File tree Expand file tree Collapse file tree 3 files changed +30
-0
lines changed
llvm/utils/gn/secondary/llvm Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ static_library (" CodeGenData" ) {
2
+ output_name = " LLVMCodeGenData"
3
+ deps = [
4
+ " //llvm/lib/IR" ,
5
+ " //llvm/lib/Support" ,
6
+ ]
7
+ sources = [
8
+ " OutlinedHashTree.cpp" ,
9
+ " OutlinedHashTreeRecord.cpp" ,
10
+ ]
11
+ }
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
+ " CodeGenData:CodeGenDataTests" ,
13
14
" DWARFLinkerParallel:DWARFLinkerParallelTests" ,
14
15
" DebugInfo/BTF:DebugInfoBTFTests" ,
15
16
" DebugInfo/CodeView:DebugInfoCodeViewTests" ,
Original file line number Diff line number Diff line change
1
+ import (" //third-party/unittest/unittest.gni" )
2
+
3
+ unittest (" CodeGenDataTests" ) {
4
+ deps = [
5
+ " //llvm/lib/CodeGen" ,
6
+ " //llvm/lib/CodeGenData" ,
7
+ " //llvm/lib/IR" ,
8
+ " //llvm/lib/MC" ,
9
+ " //llvm/lib/Support" ,
10
+ " //llvm/lib/Target" ,
11
+ " //llvm/lib/Target:TargetsToBuild" ,
12
+ " //llvm/lib/Testing/Support" ,
13
+ ]
14
+ sources = [
15
+ " OutlinedHashTreeRecordTest.cpp" ,
16
+ " OutlinedHashTreeTest.cpp" ,
17
+ ]
18
+ }
You can’t perform that action at this time.
0 commit comments