File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed
llvm/utils/gn/secondary/llvm/unittests Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,10 @@ group("unittests") {
66
66
deps += [ " tools/llvm-exegesis/Mips:LLVMExegesisMipsTests" ]
67
67
}
68
68
if (llvm_build_PowerPC ) {
69
- deps += [ " tools/llvm-exegesis/PowerPC:LLVMExegesisPowerPCTests" ]
69
+ deps += [
70
+ " Target/PowerPC:PowerPCTests" ,
71
+ " tools/llvm-exegesis/PowerPC:LLVMExegesisPowerPCTests" ,
72
+ ]
70
73
}
71
74
if (llvm_build_WebAssembly ) {
72
75
deps += [ " Target/WebAssembly:WebAssemblyTests" ]
Original file line number Diff line number Diff line change
1
+ import (" //llvm/utils/unittest/unittest.gni" )
2
+
3
+ unittest (" PowerPCTests" ) {
4
+ deps = [
5
+ " //llvm/lib/Support" ,
6
+ " //llvm/lib/Target" ,
7
+ " //llvm/lib/Target/PowerPC:LLVMPowerPCCodeGen" ,
8
+ " //llvm/lib/Target/PowerPC/MCTargetDesc" ,
9
+ " //llvm/lib/Target/PowerPC/TargetInfo" ,
10
+ ]
11
+ sources = [
12
+ # Make `gn format` not collapse this, for sync_source_lists_from_cmake.py.
13
+ " AIXRelocModelTest.cpp" ,
14
+ ]
15
+ }
You can’t perform that action at this time.
0 commit comments