xref: /llvm-project/llvm/utils/gn/secondary/lldb/source/Plugins/REPL/Clang/BUILD.gn (revision b75eea12fe18af8f2175fd39ae3bd275ac7991ff)
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