[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 01:53:51 PDT 2022
akuegel created this revision.
Herald added subscribers: sdasgup3, wenzhicui, wrengr, Chia-hungDuan, dcaballe, cota, teijeong, rdzhabarov, tatianashp, msifontes, jurahul, Kayjukh, grosul1, Joonsoo, liufengdb, aartbik, mgester, arpith-jacob, antiagainst, shauheen, rriddle, mehdi_amini.
Herald added a project: All.
akuegel requested review of this revision.
Herald added subscribers: llvm-commits, stephenneuendorffer, nicolasvasilache.
Herald added a project: LLVM.
Repository:
rG LLVM Github Monorepo
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.416098.patch
Type: text/x-patch
Size: 840 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220317/3868d2b2/attachment.bin>
More information about the llvm-commits
mailing list