File tree Expand file tree Collapse file tree 2 files changed +45
-1
lines changed Expand file tree Collapse file tree 2 files changed +45
-1
lines changed Original file line number Diff line number Diff line change 18
18
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_TRANSPORT_H
19
19
#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_TRANSPORT_H
20
20
21
- #include " Feature.h"
22
21
#include " llvm/ADT/StringRef.h"
23
22
#include " llvm/Support/JSON.h"
24
23
#include " llvm/Support/raw_ostream.h"
Original file line number Diff line number Diff line change
1
+ # This file is licensed under the Apache License v2.0 with LLVM Exceptions.
2
+ # See https://llvm.org/LICENSE.txt for license information.
3
+ # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4
+
5
+ package (default_visibility = ["//visibility:public" ])
6
+
7
+ licenses (["notice" ])
8
+
9
+ cc_library (
10
+ name = "clangd_library" ,
11
+ srcs = [
12
+ "JSONTransport.cpp" ,
13
+ "Protocol.cpp" ,
14
+ "URI.cpp" ,
15
+ "index/SymbolID.cpp" ,
16
+ "support/Logger.cpp" ,
17
+ "support/Trace.cpp" ,
18
+ "support/MemoryTree.cpp" ,
19
+ "support/Context.cpp" ,
20
+ "support/Cancellation.cpp" ,
21
+ "support/ThreadCrashReporter.cpp" ,
22
+ "support/Shutdown.cpp" ,
23
+ ],
24
+ hdrs = [
25
+ "Transport.h" ,
26
+ "Protocol.h" ,
27
+ "URI.h" ,
28
+ "LSPBinder.h" ,
29
+ "index/SymbolID.h" ,
30
+ "support/Function.h" ,
31
+ "support/Cancellation.h" ,
32
+ "support/ThreadCrashReporter.h" ,
33
+ "support/Logger.h" ,
34
+ "support/Trace.h" ,
35
+ "support/MemoryTree.h" ,
36
+ "support/Context.h" ,
37
+ "support/Shutdown.h" ,
38
+ ],
39
+ includes = ["." ],
40
+ deps = [
41
+ "//llvm:Support" ,
42
+ "//clang:basic" ,
43
+ "//clang:index" ,
44
+ ],
45
+ )
You can’t perform that action at this time.
0 commit comments