Skip to content

Commit f382b7f

Browse files
committed
[Bazel][lldb] Add PluginProcessWasm target.
1 parent 4655907 commit f382b7f

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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",

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
485501
cc_library(
486502
name = "PluginObjectContainerMachOArchive",
487503
srcs = glob(["ObjectContainer/Universal-Mach-O/*.cpp"]),

0 commit comments

Comments
 (0)