File tree Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ executable("dexp") {
2
2
configs += [ " //llvm/utils/gn/build:clang_code" ]
3
3
deps = [
4
4
" //clang-tools-extra/clangd" ,
5
- " //clang-tools-extra/clangd/index/remote" ,
5
+ " //clang-tools-extra/clangd:features" ,
6
+ " //clang-tools-extra/clangd/index/remote/unimplemented" ,
6
7
" //clang/lib/Basic" ,
7
8
" //llvm/lib/LineEditor" ,
8
9
" //llvm/lib/Support" ,
Original file line number Diff line number Diff line change @@ -4,7 +4,12 @@ source_set("remote") {
4
4
" //clang-tools-extra/clangd" ,
5
5
" //llvm/lib/Support" ,
6
6
]
7
- public_deps = [ " //clang-tools-extra/clangd:features" ]
8
7
include_dirs = [ " ../.." ]
9
- sources = [ " unimplemented/UnimplementedClient.cpp" ]
8
+ sources = []
9
+ if (false ) {
10
+ sources += [
11
+ # FIXME comment
12
+ " Client.cpp" ,
13
+ ]
14
+ }
10
15
}
Original file line number Diff line number Diff line change
1
+ source_set (" unimplemented" ) {
2
+ configs += [ " //llvm/utils/gn/build:clang_code" ]
3
+ deps = [
4
+ " //clang-tools-extra/clangd" ,
5
+ " //llvm/lib/Support" ,
6
+ ]
7
+ include_dirs = [ " ../../.." ]
8
+ sources = [
9
+ # FIXME comment
10
+ " UnimplementedClient.cpp" ,
11
+ ]
12
+ }
You can’t perform that action at this time.
0 commit comments