1import("//third-party/unittest/unittest.gni") 2 3unittest("LLVMExegesisPowerPCTests") { 4 deps = [ 5 "//llvm/lib/DebugInfo/Symbolize", 6 "//llvm/lib/MC", 7 "//llvm/lib/MC/MCParser", 8 "//llvm/lib/Object", 9 "//llvm/lib/Support", 10 "//llvm/lib/Target/PowerPC", 11 12 # Exegesis reaches inside the Target/PowerPC tablegen internals and must 13 # depend on these Target/PowerPC-internal build targets. 14 "//llvm/lib/Target/PowerPC/MCTargetDesc", 15 "//llvm/tools/llvm-exegesis/lib", 16 "//llvm/tools/llvm-exegesis/lib/PowerPC", 17 ] 18 include_dirs = [ 19 "//llvm/lib/Target/PowerPC", 20 "//llvm/tools/llvm-exegesis/lib", 21 ] 22 sources = [ 23 "AnalysisTest.cpp", 24 "SnippetGeneratorTest.cpp", 25 "TargetTest.cpp", 26 ] 27} 28