[gn build] port c8daf4a707 (check-lldb)

Reviewed By: thakis

Differential Revision: https://reviews.llvm.org/D133718
This commit is contained in:
Zequan Wu 2022-09-13 11:14:36 -07:00
parent d308113354
commit 901f74ca69
2 changed files with 19 additions and 0 deletions

View File

@ -182,6 +182,11 @@ lldb_plugins += [
"SymbolVendorWasm",
],
[
"//lldb/source/Plugins/SymbolVendor/PECOFF",
"SymbolVendorPECOFF",
],
[
"//lldb/source/Plugins/TypeSystem/Clang",
"TypeSystemClang",

View File

@ -0,0 +1,14 @@
static_library("PECOFF") {
output_name = "lldbPluginSymbolVendorPECOFF"
configs += [ "//llvm/utils/gn/build:lldb_code" ]
deps = [
"//lldb/source/Core",
"//lldb/source/Host",
"//lldb/source/Plugins/ObjectFile/PECOFF",
"//lldb/source/Symbol",
]
# Reaches into Plugins/ObjectFile/PECOFF.
include_dirs = [ "//lldb/source" ]
sources = [ "SymbolVendorPECOFF.cpp" ]
}