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(
1001
1001
"//lldb/source/Plugins:PluginInstructionRISCV" ,
1002
1002
"//lldb/source/Plugins:PluginObjCLanguage" ,
1003
1003
"//lldb/source/Plugins:PluginProcessGDBRemote" ,
1004
+ "//lldb/source/Plugins:PluginProcessWasm" ,
1004
1005
"//lldb/source/Plugins:PluginSymbolFileDWARF" ,
1005
1006
"//lldb/source/Plugins:PluginSymbolFileNativePDB" ,
1006
1007
"//lldb/source/Plugins:PluginSymbolFilePDB" ,
Original file line number Diff line number Diff line change @@ -482,6 +482,22 @@ cc_library(
482
482
],
483
483
)
484
484
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
+
485
501
cc_library (
486
502
name = "PluginObjectContainerMachOArchive" ,
487
503
srcs = glob (["ObjectContainer/Universal-Mach-O/*.cpp" ]),
You can’t perform that action at this time.
0 commit comments