Skip to content

Commit 9ad4f05

Browse files
committed
[bazel][lldb] Port 5f2cf99
1 parent 11ed7f2 commit 9ad4f05

File tree

1 file changed

+20
-0
lines changed
  • utils/bazel/llvm-project-overlay/lldb/source/Plugins

1 file changed

+20
-0
lines changed

utils/bazel/llvm-project-overlay/lldb/source/Plugins/BUILD.bazel

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,12 +1221,31 @@ cc_library(
12211221
],
12221222
)
12231223

1224+
gentbl_cc_library(
1225+
name = "DynamicLoaderMacOSXDYLDProperties",
1226+
strip_include_prefix = "DynamicLoader/MacOSX-DYLD",
1227+
tbl_outs = [
1228+
(
1229+
["-gen-lldb-property-defs"],
1230+
"DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwinProperties.inc",
1231+
),
1232+
(
1233+
["-gen-lldb-property-enum-defs"],
1234+
"DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwinPropertiesEnum.inc",
1235+
),
1236+
],
1237+
tblgen = "//lldb:lldb-tblgen",
1238+
td_file = "DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwinProperties.td",
1239+
deps = ["//lldb:CoreTdFiles"],
1240+
)
1241+
12241242
cc_library(
12251243
name = "PluginDynamicLoaderMacOSXDYLD",
12261244
srcs = glob(["DynamicLoader/MacOSX-DYLD/*.cpp"]),
12271245
hdrs = glob(["DynamicLoader/MacOSX-DYLD/*.h"]),
12281246
include_prefix = "Plugins",
12291247
deps = [
1248+
":DynamicLoaderMacOSXDYLDProperties",
12301249
":PluginObjCRuntime",
12311250
":PluginTypeSystemClang",
12321251
":PluginTypeSystemClangHeaders",
@@ -1239,6 +1258,7 @@ cc_library(
12391258
"//lldb:Target",
12401259
"//lldb:TargetHeaders",
12411260
"//lldb:Utility",
1261+
"//llvm:Support",
12421262
"//llvm:TargetParser",
12431263
],
12441264
)

0 commit comments

Comments
 (0)