daml/compiler/scenario-service/client/BUILD.bazel

51 lines
1.2 KiB
Python
Raw Normal View History

2019-08-13 19:23:03 +03:00
# Copyright (c) 2019 The DAML Authors. All rights reserved.
2019-04-04 11:33:38 +03:00
# SPDX-License-Identifier: Apache-2.0
load("//bazel_tools:haskell.bzl", "da_haskell_library")
da_haskell_library(
name = "client",
srcs = glob(["src/**/*.hs"]),
hazel_deps = [
"async",
"base",
"binary",
"blaze-html",
"bytestring",
"conduit-extra",
"conduit",
"containers",
"cryptonite",
"deepseq",
"directory",
"extra",
"filepath",
"hashable",
"lens",
"mtl",
"process",
"proto3-suite",
"proto3-wire",
"split",
"stm",
"system-filepath",
"text",
"time",
"transformers",
"uri-encode",
"vector",
],
src_strip_prefix = "src",
visibility = ["//visibility:public"],
deps = [
"//compiler/daml-lf-ast",
"//compiler/daml-lf-proto",
"//compiler/scenario-service/protos:scenario_service_haskell_proto",
"//daml-assistant:daml-project-config",
"//libs-haskell/bazel-runfiles",
"//libs-haskell/da-hs-base",
"//nix/third-party/gRPC-haskell:grpc-haskell",
"//nix/third-party/gRPC-haskell/core:grpc-haskell-core",
],
2019-04-04 11:33:38 +03:00
)