gn build: (manually) merge r372076

llvm-svn: 372123
This commit is contained in:
Nico Weber 2019-09-17 14:06:05 +00:00
parent a3569aced0
commit 84a2f5e8b7
2 changed files with 21 additions and 1 deletions

View File

@ -55,7 +55,10 @@ group("unittests") {
]
}
if (llvm_build_ARM) {
deps += [ "tools/llvm-exegesis/ARM:LLVMExegesisARMTests" ]
deps += [
"Target/ARM:ARMTests",
"tools/llvm-exegesis/ARM:LLVMExegesisARMTests",
]
}
if (llvm_build_WebAssembly) {
deps += [ "Target/WebAssembly:WebAssemblyTests" ]

View File

@ -0,0 +1,17 @@
import("//llvm/utils/unittest/unittest.gni")
unittest("ARMTests") {
deps = [
"//llvm/lib/MC",
"//llvm/lib/Support",
"//llvm/lib/Target",
"//llvm/lib/Target/ARM:LLVMARMCodeGen",
"//llvm/lib/Target/ARM/MCTargetDesc",
"//llvm/lib/Target/ARM/TargetInfo",
"//llvm/lib/Target/ARM/Utils",
]
include_dirs = [ "//llvm/lib/Target/ARM" ]
sources = [
"MachineInstrTest.cpp",
]
}