[gn] Port a52054cfa29d
authorNico Weber <thakis@chromium.org>
Sat, 1 Apr 2023 00:08:26 +0000 (20:08 -0400)
committerNico Weber <thakis@chromium.org>
Sat, 1 Apr 2023 00:09:48 +0000 (20:09 -0400)
llvm/utils/gn/secondary/lldb/source/Expression/BUILD.gn
llvm/utils/gn/secondary/lldb/source/Plugins/ObjectFile/JIT/BUILD.gn [deleted file]

index 62d7335..db70e5d 100644 (file)
@@ -5,7 +5,6 @@ static_library("Expression") {
     "//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.
@@ -33,6 +32,7 @@ static_library("Expression") {
     "IRMemoryMap.cpp",
     "LLVMUserExpression.cpp",
     "Materializer.cpp",
+    "ObjectFileJIT.cpp",
     "REPL.cpp",
     "UserExpression.cpp",
     "UtilityFunction.cpp",
diff --git a/llvm/utils/gn/secondary/lldb/source/Plugins/ObjectFile/JIT/BUILD.gn b/llvm/utils/gn/secondary/lldb/source/Plugins/ObjectFile/JIT/BUILD.gn
deleted file mode 100644 (file)
index b031967..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-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" ]
-}