daml/ledger-api/perf-testing/BUILD.bazel

22 lines
519 B
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:scala.bzl",
"da_scala_library",
2019-04-04 11:33:38 +03:00
)
da_scala_library(
name = "perf-testing",
srcs = glob(["src/**/*.scala"]),
visibility = [
"//visibility:public",
],
2019-04-04 11:33:38 +03:00
deps = [
"//3rdparty/jvm/com/storm_enroute:scalameter",
"//3rdparty/jvm/com/typesafe/akka:akka_stream",
"//3rdparty/jvm/org/slf4j:slf4j_api",
"//ledger-api/testing-utils",
2019-04-04 11:33:38 +03:00
],
)