Skip to content

Commit 5582f0c

Browse files
committed
[gn build] Manually port a3a2599
1 parent 2fca446 commit 5582f0c

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
static_library("LSP") {
2+
output_name = "LLVMSupportLSP"
3+
deps = [ "//llvm/lib/Support" ]
4+
sources = [
5+
"Logging.cpp",
6+
"Protocol.cpp",
7+
"Transport.cpp",
8+
]
9+
}

llvm/utils/gn/secondary/llvm/unittests/BUILD.gn

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ group("unittests") {
5151
"SandboxIR:SandboxIRTests",
5252
"Support:SupportTests",
5353
"Support/DynamicLibrary:DynamicLibraryTests",
54+
"Support/LSP:LSPTests",
5455
"TableGen:TableGenTests",
5556
"Target:TargetMachineCTests",
5657
"TargetParser:TargetParserTests",
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import("//third-party/unittest/unittest.gni")
2+
3+
unittest("LSPTests") {
4+
deps = [ "//llvm/lib/Support/LSP" ]
5+
sources = [
6+
"Protocol.cpp",
7+
"Transport.cpp",
8+
]
9+
}

0 commit comments

Comments
 (0)