forked from OSchip/llvm-project
[gn build] port c8daf4a707
(check-lldb)
Reviewed By: thakis Differential Revision: https://reviews.llvm.org/D133718
This commit is contained in:
parent
d308113354
commit
901f74ca69
|
@ -182,6 +182,11 @@ lldb_plugins += [
|
|||
"SymbolVendorWasm",
|
||||
],
|
||||
|
||||
[
|
||||
"//lldb/source/Plugins/SymbolVendor/PECOFF",
|
||||
"SymbolVendorPECOFF",
|
||||
],
|
||||
|
||||
[
|
||||
"//lldb/source/Plugins/TypeSystem/Clang",
|
||||
"TypeSystemClang",
|
||||
|
|
|
@ -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" ]
|
||||
}
|
Loading…
Reference in New Issue