[PATCH] D121891: [mlir][Bazel] Adapt BUILD.bazel for move of lsp-server support files.
Adrian Kuegel via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 17 02:04:29 PDT 2022
This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGbd0bf9674bf6: [mlir][Bazel] Adapt BUILD.bazel for move of lsp-server support files. (authored by akuegel).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D121891/new/
https://reviews.llvm.org/D121891
Files:
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
Index: utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -2998,6 +2998,23 @@
deps = ["//llvm:Support"],
)
+cc_library(
+ name = "MlirLspServerSupportLib",
+ srcs = glob(
+ [
+ "lib/Tools/lsp-server-support/*.cpp",
+ ],
+ ),
+ hdrs = glob(
+ [
+ "lib/Tools/lsp-server-support/*.h",
+ ],
+ ),
+ deps = [
+ ":Support",
+ ],
+)
+
cc_library(
name = "MlirLspServerLib",
srcs = glob(
@@ -3014,6 +3031,7 @@
includes = ["include"],
deps = [
":IR",
+ ":MlirLspServerSupportLib",
":Parser",
":Support",
"//llvm:Support",
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D121891.416101.patch
Type: text/x-patch
Size: 840 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220317/e49fbed6/attachment.bin>
More information about the llvm-commits
mailing list