1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| import("//llvm/utils/unittest/unittest.gni")
unittest("CodeGenTests") {
deps = [
"//llvm/lib/Analysis",
"//llvm/lib/AsmParser",
"//llvm/lib/CodeGen",
"//llvm/lib/CodeGen/AsmPrinter",
"//llvm/lib/CodeGen/SelectionDAG",
"//llvm/lib/IR",
"//llvm/lib/MC",
"//llvm/lib/Support",
"//llvm/lib/Target",
"//llvm/lib/Target:TargetsToBuild",
]
sources = [
"AArch64SelectionDAGTest.cpp",
"DIEHashTest.cpp",
"LowLevelTypeTest.cpp",
"MachineInstrBundleIteratorTest.cpp",
"MachineInstrTest.cpp",
"MachineOperandTest.cpp",
"ScalableVectorMVTsTest.cpp",
"TargetOptionsTest.cpp",
"TypeTraitsTest.cpp",
]
has_custom_main = true
}
|