1static_library("Interpreter") { 2 output_name = "LLVMInterpreter" 3 deps = [ 4 "//llvm/include/llvm/Config:config", 5 "//llvm/lib/CodeGen", 6 "//llvm/lib/ExecutionEngine", 7 "//llvm/lib/IR", 8 "//llvm/lib/Support", 9 ] 10 sources = [ 11 "Execution.cpp", 12 "ExternalFunctions.cpp", 13 "Interpreter.cpp", 14 ] 15} 16