xref: /llvm-project/llvm/utils/gn/secondary/llvm/lib/ExecutionEngine/Interpreter/BUILD.gn (revision a3429b3981f37cec0b15f3eaf41ab482cc883e23)
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