[gn build] Manually port bed9efed71

This commit is contained in:
Arthur Eubanks 2022-05-25 14:36:42 -07:00
parent 3bf5c2c8ec
commit 534b19fbaa
2 changed files with 12 additions and 0 deletions

View File

@ -93,6 +93,7 @@ group("unittests") {
}
if (llvm_build_X86) {
deps += [
"MC/X86:X86MCTests",
"Target/X86:X86Tests",
"tools/llvm-exegesis/X86:LLVMExegesisX86Tests",
]

View File

@ -0,0 +1,11 @@
import("//llvm/utils/unittest/unittest.gni")
unittest("X86MCTests") {
deps = [
"//llvm/lib/MC",
"//llvm/lib/MC/MCParser",
"//llvm/lib/Support",
"//llvm/lib/Target/X86",
]
sources = [ "X86MCDisassemblerTest.cpp" ]
}