daml/libs-scala/timer-utils/BUILD.bazel
Gary Verhaegen a925f0174c
update copyright notices for 2021 (#8257)
* update copyright notices for 2021

To be merged on 2021-01-01.

CHANGELOG_BEGIN
CHANGELOG_END

* patch-bazel-windows & da-ghc-lib
2021-01-01 19:49:51 +01:00

27 lines
614 B
Python

# Copyright (c) 2021 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
load(
"//bazel_tools:scala.bzl",
"da_scala_library",
"da_scala_test_suite",
)
da_scala_library(
name = "timer-utils",
srcs = glob(["src/main/scala/**/*.scala"]),
tags = ["maven_coordinates=com.daml:timer-utils:__VERSION__"],
visibility = [
"//visibility:public",
],
deps = [],
)
da_scala_test_suite(
name = "timer-utils-test",
srcs = glob(["src/test/suite/scala/**/*.scala"]),
deps = [
":timer-utils",
],
)