[llvm] 08b3556 - [gn] port enough of 2914a4b88837 (lldb Interfaces)
Nico Weber via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 25 10:48:02 PDT 2024
Author: Nico Weber
Date: 2024-07-25T13:47:44-04:00
New Revision: 08b3556c2ff8948932bcbbc77781fe41388e4e63
URL: https://github.com/llvm/llvm-project/commit/08b3556c2ff8948932bcbbc77781fe41388e4e63
DIFF: https://github.com/llvm/llvm-project/commit/08b3556c2ff8948932bcbbc77781fe41388e4e63.diff
LOG: [gn] port enough of 2914a4b88837 (lldb Interfaces)
gn's lldb does not have the Python plugin, so most of the changes
from 2914a4b88837 aren't necessary here.
Added:
llvm/utils/gn/secondary/lldb/source/Interpreter/Interfaces/BUILD.gn
Modified:
llvm/utils/gn/secondary/lldb/source/Interpreter/BUILD.gn
Removed:
################################################################################
diff --git a/llvm/utils/gn/secondary/lldb/source/Interpreter/BUILD.gn b/llvm/utils/gn/secondary/lldb/source/Interpreter/BUILD.gn
index 7825396b402d5..c6c6ef994c28d 100644
--- a/llvm/utils/gn/secondary/lldb/source/Interpreter/BUILD.gn
+++ b/llvm/utils/gn/secondary/lldb/source/Interpreter/BUILD.gn
@@ -15,6 +15,7 @@ static_library("Interpreter") {
deps = [
":InterpreterProperties",
":InterpreterPropertiesEnum",
+ "Interfaces",
"//lldb/source/Commands",
"//lldb/source/Core",
"//lldb/source/DataFormatters",
diff --git a/llvm/utils/gn/secondary/lldb/source/Interpreter/Interfaces/BUILD.gn b/llvm/utils/gn/secondary/lldb/source/Interpreter/Interfaces/BUILD.gn
new file mode 100644
index 0000000000000..2e70c54ea9564
--- /dev/null
+++ b/llvm/utils/gn/secondary/lldb/source/Interpreter/Interfaces/BUILD.gn
@@ -0,0 +1,9 @@
+static_library("Interfaces") {
+ output_name = "lldbInterpreterInterfaces"
+ configs += [ "//llvm/utils/gn/build:lldb_code" ]
+ deps = [
+ "//lldb/source/Utility",
+ "//llvm/lib/Support",
+ ]
+ sources = [ "ScriptedInterfaceUsages.cpp" ]
+}
More information about the llvm-commits
mailing list