[clangd] NFC: Cleanup unused headers and libraries

Summary: Extended version of D78843.

Reviewers: sammccall

Reviewed By: sammccall

Subscribers: mgorny, ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, usaxena95, cfe-commits

Tags: #clang

Differential Revision: https://reviews.llvm.org/D79313
This commit is contained in:
Kirill Bobyrev 2020-05-05 11:22:59 +02:00
parent aed6bd6f42
commit 07f8ca6ab1
6 changed files with 2 additions and 11 deletions

View File

@ -1,2 +1 @@
#define CLANGD_BUILD_XPC @CLANGD_BUILD_XPC@
#define CLANGD_ENABLE_REMOTE @CLANGD_ENABLE_REMOTE@

View File

@ -11,15 +11,12 @@
//
//===----------------------------------------------------------------------===//
#include "Features.inc"
#include "SourceCode.h"
#include "index/Serialization.h"
#include "index/dex/Dex.h"
#include "index/remote/Client.h"
#include "llvm/ADT/ScopeExit.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/StringSwitch.h"
#include "llvm/LineEditor/LineEditor.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Signals.h"

View File

@ -14,7 +14,6 @@
#include "marshalling/Marshalling.h"
#include "support/Logger.h"
#include "support/Trace.h"
#include "llvm/Support/YAMLTraits.h"
namespace clang {
namespace clangd {

View File

@ -13,7 +13,7 @@
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_INDEX_REMOTE_MARSHALLING_H
#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_INDEX_REMOTE_MARSHALLING_H
#include "Index.grpc.pb.h"
#include "Index.pb.h"
#include "index/Index.h"
#include "llvm/Support/StringSaver.h"

View File

@ -1,5 +1,4 @@
set(LLVM_LINK_COMPONENTS
LineEditor
Support
)
add_clang_executable(clangd-index-server
@ -8,6 +7,7 @@ add_clang_executable(clangd-index-server
DEPENDS
RemoteIndexProtos
)
target_link_libraries(clangd-index-server
PRIVATE
clangDaemon

View File

@ -9,12 +9,8 @@
#include "index/Index.h"
#include "index/Serialization.h"
#include "index/remote/marshalling/Marshalling.h"
#include "llvm/ADT/Optional.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/LineEditor/LineEditor.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/Path.h"
#include "llvm/Support/Signals.h"
#include <grpcpp/grpcpp.h>