1static_library("POSIX-DYLD") { 2 output_name = "lldbPluginDynamicLoaderPosixDYLD" 3 configs += [ 4 "//llvm/utils/gn/build:clang_code", 5 "//llvm/utils/gn/build:lldb_code", 6 ] 7 deps = [ 8 "//lldb/source/Breakpoint", 9 "//lldb/source/Core", 10 "//lldb/source/Host", 11 12 #"//lldb/source/Plugins/Process/elf-core", # Dependency cycle. 13 "//lldb/source/Plugins/Process/Utility", 14 "//lldb/source/Symbol", 15 "//lldb/source/Target", 16 "//llvm/lib/Support", 17 ] 18 19 # Reaches into Plugins/Process/Utility. 20 include_dirs = [ "//lldb/source" ] 21 sources = [ 22 "DYLDRendezvous.cpp", 23 "DynamicLoaderPOSIXDYLD.cpp", 24 ] 25} 26