1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

[gn build] minimally merge 67b2dbd5a33583fe148fd12 more

This commit is contained in:
Nico Weber 2020-04-24 10:23:22 -04:00
parent e4591aa54e
commit 745f48bf35
2 changed files with 11 additions and 0 deletions

View File

@ -2,6 +2,7 @@ executable("dexp") {
configs += [ "//llvm/utils/gn/build:clang_code" ]
deps = [
"//clang-tools-extra/clangd",
"//clang-tools-extra/clangd/index/remote",
"//clang/lib/Basic",
"//llvm/lib/LineEditor",
"//llvm/lib/Support",

View File

@ -0,0 +1,10 @@
source_set("remote") {
configs += [ "//llvm/utils/gn/build:clang_code" ]
deps = [
"//clang-tools-extra/clangd",
"//llvm/lib/Support",
]
public_deps = [ "//clang-tools-extra/clangd:features" ]
include_dirs = [ "../.." ]
sources = [ "unimplemented/UnimplementedClient.cpp" ]
}