File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
utils/bazel/llvm-project-overlay/lldb Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -1001,6 +1001,7 @@ cc_binary(
10011001 "//lldb/source/Plugins:PluginInstructionRISCV" ,
10021002 "//lldb/source/Plugins:PluginObjCLanguage" ,
10031003 "//lldb/source/Plugins:PluginProcessGDBRemote" ,
1004+ "//lldb/source/Plugins:PluginProcessWasm" ,
10041005 "//lldb/source/Plugins:PluginSymbolFileDWARF" ,
10051006 "//lldb/source/Plugins:PluginSymbolFileNativePDB" ,
10061007 "//lldb/source/Plugins:PluginSymbolFilePDB" ,
Original file line number Diff line number Diff line change @@ -482,6 +482,22 @@ cc_library(
482482 ],
483483)
484484
485+ cc_library (
486+ name = "PluginProcessWasm" ,
487+ srcs = glob (["Process/wasm/*.cpp" ]),
488+ hdrs = glob (["Process/wasm/*.h" ]),
489+ includes = [".." ],
490+ deps = [
491+ ":PluginProcessGDBRemote" ,
492+ "//lldb:CoreHeaders" ,
493+ "//lldb:Headers" ,
494+ "//lldb:TargetHeaders" ,
495+ "//lldb:Utility" ,
496+ "//lldb:UtilityPrivateHeaders" ,
497+ "//llvm:Support" ,
498+ ],
499+ )
500+
485501cc_library (
486502 name = "PluginObjectContainerMachOArchive" ,
487503 srcs = glob (["ObjectContainer/Universal-Mach-O/*.cpp" ]),
You can’t perform that action at this time.
0 commit comments