File tree Expand file tree Collapse file tree 3 files changed +19
-0
lines changed
llvm/utils/gn/secondary/llvm Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ group("unittests") {
51
51
" SandboxIR:SandboxIRTests" ,
52
52
" Support:SupportTests" ,
53
53
" Support/DynamicLibrary:DynamicLibraryTests" ,
54
+ " Support/LSP:LSPTests" ,
54
55
" TableGen:TableGenTests" ,
55
56
" Target:TargetMachineCTests" ,
56
57
" TargetParser:TargetParserTests" ,
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments