18 lines · plain
1static_library("ELF") {2 output_name = "lldbPluginObjectFileELF"3 configs += [ "//llvm/utils/gn/build:lldb_code" ]4 deps = [5 "//lldb/source/Core",6 "//lldb/source/Host",7 "//lldb/source/Symbol",8 "//lldb/source/Target",9 "//llvm/lib/BinaryFormat",10 "//llvm/lib/Object",11 "//llvm/lib/Support",12 ]13 sources = [14 "ELFHeader.cpp",15 "ObjectFileELF.cpp",16 ]17}18