1static_library("ARM") { 2 output_name = "lldbPluginInstructionARM" 3 configs += [ "//llvm/utils/gn/build:lldb_code" ] 4 deps = [ 5 "//lldb/source/Core", 6 "//lldb/source/Host", 7 "//lldb/source/Interpreter", 8 "//lldb/source/Plugins/Process/Utility", 9 "//lldb/source/Symbol", 10 "//lldb/source/Target", 11 "//llvm/lib/Support", 12 ] 13 14 # Reaches into Plugins/Process/Utility. 15 include_dirs = [ "//lldb/source" ] 16 sources = [ 17 "EmulateInstructionARM.cpp", 18 "EmulationStateARM.cpp", 19 ] 20} 21