xref: /llvm-project/llvm/utils/gn/secondary/lldb/source/Plugins/Platform/Linux/BUILD.gn (revision 23159453d930eff628e64badb2c37cb786e7f29d)
1static_library("Linux") {
2  output_name = "lldbPluginPlatformLinux"
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    "//lldb/source/Interpreter",
12    "//lldb/source/Plugins/Platform/POSIX",
13    "//lldb/source/Target",
14  ]
15
16  # Reaches into Plugins/Platform/POSIX.
17  include_dirs = [ "//lldb/source" ]
18  sources = [ "PlatformLinux.cpp" ]
19}
20