"//lldb/source/Core",
"//lldb/source/Host",
"//lldb/source/Interpreter",
- "//lldb/source/Plugins/ObjectFile/JIT",
#"//lldb/source/Symbol", # FIXME: Dependency cycle.
#"//lldb/source/Target", # FIXME: Dependency cycle.
"IRMemoryMap.cpp",
"LLVMUserExpression.cpp",
"Materializer.cpp",
+ "ObjectFileJIT.cpp",
"REPL.cpp",
"UserExpression.cpp",
"UtilityFunction.cpp",
+++ /dev/null
-static_library("JIT") {
- output_name = "lldbPluginObjectFileJIT"
- configs += [ "//llvm/utils/gn/build:lldb_code" ]
- deps = [
- "//lldb/source/Core",
- "//lldb/source/Host",
-
- #"//lldb/source/Symbol", # 2-hop dependency cycle.
- #"//lldb/source/Target", # 2-hop dependency cycle.
- "//llvm/lib/Support",
- ]
-
- # For Utility/UuidCompatibility.h.
- include_dirs = [ "//lldb/source" ]
- sources = [ "ObjectFileJIT.cpp" ]
-}