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") {
5151 " SandboxIR:SandboxIRTests" ,
5252 " Support:SupportTests" ,
5353 " Support/DynamicLibrary:DynamicLibraryTests" ,
54+ " Support/LSP:LSPTests" ,
5455 " TableGen:TableGenTests" ,
5556 " Target:TargetMachineCTests" ,
5657 " 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