daml/compiler/lsp-tests/BUILD.bazel
Moritz Kiefer d2b68d45d4 Rename hie-core to ghcide (#2820)
* Rename hie-core to ghcide

The name `hie-core` has caused a lot of confusion as to how we relate
to haskell-ide-engine so changing it should hopefully help with that.
I also think that ghcide is still a good name once we hopefully
integrate with haskell-ide-engine more closely.

The name ghcide seems to have a reasonable amount of support on
Twitter https://twitter.com/ndm_haskell/status/1170681262987710464
which is of course the only good way to come up with names.

* Add a readme that points people to the new directory.

* Fix bogus replacements

* Use a proper link

* links are hard
2019-09-09 13:55:16 +00:00

41 lines
979 B
Python

# Copyright (c) 2019 The DAML Authors. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
load("//bazel_tools:haskell.bzl", "da_haskell_binary", "da_haskell_test")
load("@os_info//:os_info.bzl", "is_windows")
da_haskell_test(
name = "lsp-tests",
timeout = "long",
srcs = glob(["src/**/*.hs"]),
data = [
"//compiler/damlc",
],
hackage_deps = [
"aeson",
"base",
"containers",
"extra",
"directory",
"filepath",
"haskell-lsp",
"haskell-lsp-types",
"lens",
"lsp-test",
"mtl",
"network-uri",
"parser-combinators",
"tasty",
"tasty-hunit",
"text",
],
visibility = ["//visibility:public"],
deps = [
"//compiler/damlc/daml-ide-core",
"//compiler/ghcide",
"//compiler/ghcide/test:ghcide-testing",
"//libs-haskell/bazel-runfiles",
"//libs-haskell/test-utils",
],
)