1static_library("ObjC") { 2 output_name = "lldbPluginObjCRuntime" 3 configs += [ 4 "//llvm/utils/gn/build:clang_code", 5 "//llvm/utils/gn/build:lldb_code", 6 ] 7 deps = [ 8 "//lldb/source/Core", 9 "//lldb/source/Symbol", 10 "//lldb/source/Target", 11 "//lldb/source/Utility", 12 ] 13 14 # Reaches into Plugins/TypeSystem/Clang. 15 include_dirs = [ "//lldb/source" ] 16 sources = [ "ObjCLanguageRuntime.cpp" ] 17} 18