Skip to content

Commit bec14e7

Browse files
nicoyuxuanchen1997
authored andcommitted
[gn] port enough of 2914a4b (lldb Interfaces)
Summary: gn's lldb does not have the Python plugin, so most of the changes from 2914a4b aren't necessary here. Test Plan: Reviewers: Subscribers: Tasks: Tags: Differential Revision: https://phabricator.intern.facebook.com/D60250738
1 parent 42cae95 commit bec14e7

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

llvm/utils/gn/secondary/lldb/source/Interpreter/BUILD.gn

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ static_library("Interpreter") {
1515
deps = [
1616
":InterpreterProperties",
1717
":InterpreterPropertiesEnum",
18+
"Interfaces",
1819
"//lldb/source/Commands",
1920
"//lldb/source/Core",
2021
"//lldb/source/DataFormatters",
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
static_library("Interfaces") {
2+
output_name = "lldbInterpreterInterfaces"
3+
configs += [ "//llvm/utils/gn/build:lldb_code" ]
4+
deps = [
5+
"//lldb/source/Utility",
6+
"//llvm/lib/Support",
7+
]
8+
sources = [ "ScriptedInterfaceUsages.cpp" ]
9+
}

0 commit comments

Comments
 (0)