[llvm] r361828 - gn build: make clangd depend on clang resource headers
Ilya Biryukov via llvm-commits
llvm-commits at lists.llvm.org
Tue May 28 07:23:00 PDT 2019
Author: ibiryukov
Date: Tue May 28 07:23:00 2019
New Revision: 361828
URL: http://llvm.org/viewvc/llvm-project?rev=361828&view=rev
Log:
gn build: make clangd depend on clang resource headers
Summary:
clangd needs them to function properly, even though they are not
strictly required for the build.
Reviewers: thakis
Reviewed By: thakis
Subscribers: MaskRay, jkorous, arphaman, llvm-commits, kadircet
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D62480
Modified:
llvm/trunk/utils/gn/secondary/clang-tools-extra/clangd/tool/BUILD.gn
Modified: llvm/trunk/utils/gn/secondary/clang-tools-extra/clangd/tool/BUILD.gn
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/gn/secondary/clang-tools-extra/clangd/tool/BUILD.gn?rev=361828&r1=361827&r2=361828&view=diff
==============================================================================
--- llvm/trunk/utils/gn/secondary/clang-tools-extra/clangd/tool/BUILD.gn (original)
+++ llvm/trunk/utils/gn/secondary/clang-tools-extra/clangd/tool/BUILD.gn Tue May 28 07:23:00 2019
@@ -11,6 +11,7 @@ executable("clangd") {
"//clang/lib/Basic",
"//clang/lib/Format",
"//clang/lib/Frontend",
+ "//clang/lib/Headers",
"//clang/lib/Sema",
"//clang/lib/Tooling",
"//clang/lib/Tooling/Core",
More information about the llvm-commits
mailing list