daml/compiler/daml-lf-proto/BUILD.bazel
Moisés Ackerman ad123f9b22
Add da-hls helper (#13853)
* Add haskell-language-server executable

* Add da-hls alias

* strip prefixes in da_haskell_libraries

* Remove dev-env-provided ghcide

* Update mentions of 'ghcide' to 'hls'

changelog_begin
changelog_end
2022-05-12 10:53:10 +02:00

116 lines
2.7 KiB
Python

# Copyright (c) 2022 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
load("//bazel_tools:haskell.bzl", "da_haskell_library")
da_haskell_library(
name = "daml-lf-util",
srcs =
[
"src/DA/Daml/LF/Mangling.hs",
"src/DA/Daml/LF/Proto3/Error.hs",
"src/DA/Daml/LF/Proto3/Util.hs",
],
hackage_deps = [
"base",
"bytestring",
"either",
"text",
],
src_strip_prefix = "src",
visibility = ["//visibility:public"],
deps = [
"//compiler/daml-lf-ast",
"//daml-lf/archive:daml_lf_dev_archive_haskell_proto",
],
)
da_haskell_library(
name = "daml-lf-proto-decode",
srcs = [
"src/DA/Daml/LF/Proto3/Archive/Decode.hs",
"src/DA/Daml/LF/Proto3/Decode.hs",
"src/DA/Daml/LF/Proto3/DecodeV1.hs",
],
hackage_deps = [
"base",
"containers",
"lens",
"cryptonite",
"memory",
"bytestring",
"mtl",
"proto3-suite",
"text",
"vector",
],
src_strip_prefix = "src",
visibility = ["//visibility:public"],
deps = [
":daml-lf-util",
"//compiler/daml-lf-ast",
"//compiler/damlc/stable-packages:stable-packages-list",
"//daml-lf/archive:daml_lf_dev_archive_haskell_proto",
"//libs-haskell/da-hs-base",
],
)
da_haskell_library(
name = "daml-lf-proto-encode",
srcs = [
"src/DA/Daml/LF/Proto3/Archive/Encode.hs",
"src/DA/Daml/LF/Proto3/Encode.hs",
"src/DA/Daml/LF/Proto3/EncodeV1.hs",
],
hackage_deps = [
"base",
"bytestring",
"cryptonite",
"memory",
"containers",
"mtl",
"lens",
"text",
"vector",
"proto3-suite",
"unordered-containers",
],
src_strip_prefix = "src",
visibility = ["//visibility:public"],
deps = [
":daml-lf-util",
"//compiler/daml-lf-ast",
"//daml-lf/archive:daml_lf_dev_archive_haskell_proto",
"//libs-haskell/da-hs-base",
],
)
da_haskell_library(
name = "daml-lf-proto",
srcs = [
"src/DA/Daml/LF/Proto3/Archive.hs",
],
hackage_deps = [
"base",
"containers",
"cryptonite",
"memory",
"bytestring",
"mtl",
"lens",
"text",
"vector",
"proto3-suite",
"unordered-containers",
],
visibility = ["//visibility:public"],
deps = [
":daml-lf-proto-decode",
":daml-lf-proto-encode",
":daml-lf-util",
"//compiler/daml-lf-ast",
"//daml-lf/archive:daml_lf_dev_archive_haskell_proto",
"//libs-haskell/da-hs-base",
],
)