18 lines · plain
1static_library("Clang") {2 output_name = "lldbPluginClangREPL"3 configs += [ "//llvm/utils/gn/build:lldb_code" ]4 deps = [5 "//lldb/source/Core",6 "//lldb/source/DataFormatters",7 "//lldb/source/Host",8 "//lldb/source/Plugins/Language/ClangCommon",9 "//lldb/source/Plugins/LanguageRuntime/CPlusPlus",10 "//lldb/source/Plugins/TypeSystem/Clang",11 "//lldb/source/Symbol",12 "//lldb/source/Target",13 "//lldb/source/Utility",14 "//llvm/lib/Support",15 ]16 sources = [ "ClangREPL.cpp" ]17}18