[mlir][Bazel] Adapt BUILD.bazel for move of lsp-server support files.

Differential Revision: https://reviews.llvm.org/D121891
This commit is contained in:
Adrian Kuegel 2022-03-17 09:52:56 +01:00
parent 4010a7a5d0
commit bd0bf9674b
1 changed files with 18 additions and 0 deletions

View File

@ -2998,6 +2998,23 @@ cc_library(
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 @@ cc_library(
includes = ["include"],
deps = [
":IR",
":MlirLspServerSupportLib",
":Parser",
":Support",
"//llvm:Support",