brintos

brintos / llvm-project-archived public Read only

0
0
Text · 414 B · baedd25 Raw
18 lines · plain
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