[gn build] Add a file that should have been in cfe0284749

This commit is contained in:
Nico Weber 2021-09-07 15:37:24 -04:00
parent b3e9ba605f
commit 6be7f5c354

View file

@ -0,0 +1,14 @@
static_library("Arm") {
output_name = "lldbPluginArchitectureArm"
configs += [ "//llvm/utils/gn/build:lldb_code" ]
deps = [
"//lldb/source/Core",
"//lldb/source/Target",
"//lldb/source/Utility",
"//lldb/source/Plugins/Process/Utility",
"//llvm/lib/Support",
]
# Uses source-relative paths for own includes.
include_dirs = [ "//lldb/source" ]
sources = [ "ArchitectureArm.cpp" ]
}