File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
llvm/utils/gn/secondary/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change
1
+ import (" //lldb/utils/TableGen/lldb_tablegen.gni" )
2
+
3
+ lldb_tablegen (" DynamicLoaderDarwinProperties" ) {
4
+ args = [ " -gen-lldb-property-defs" ]
5
+ }
6
+
7
+ lldb_tablegen (" DynamicLoaderDarwinPropertiesEnum" ) {
8
+ args = [ " -gen-lldb-property-enum-defs" ]
9
+ td_file = " DynamicLoaderDarwinProperties.td"
10
+ }
11
+
1
12
static_library (" MacOSX-DYLD" ) {
2
13
output_name = " lldbPluginDynamicLoaderMacOSXDYLD"
3
14
configs += [
4
15
" //llvm/utils/gn/build:clang_code" ,
5
16
" //llvm/utils/gn/build:lldb_code" ,
6
17
]
7
18
deps = [
19
+ " :DynamicLoaderDarwinProperties" ,
20
+ " :DynamicLoaderDarwinPropertiesEnum" ,
8
21
" //lldb/source/Breakpoint" ,
9
22
" //lldb/source/Core" ,
10
23
" //lldb/source/Expression" ,
@@ -21,6 +34,7 @@ static_library("MacOSX-DYLD") {
21
34
include_dirs = [ " //lldb/source" ]
22
35
sources = [
23
36
" DynamicLoaderDarwin.cpp" ,
37
+ " DynamicLoaderDarwinProperties.cpp" ,
24
38
" DynamicLoaderMacOS.cpp" ,
25
39
" DynamicLoaderMacOSXDYLD.cpp" ,
26
40
]
You can’t perform that action at this time.
0 commit comments