[9b26b7]: / deepvariant / vendor / BUILD

Download this file

26 lines (22 with data), 418 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Placeholder: load py_library
# Placeholder: load py_test
package(
default_visibility = [
"//visibility:public",
],
)
py_library(
name = "timer",
srcs = ["timer.py"],
)
py_test(
name = "timer_test",
size = "small",
srcs = ["timer_test.py"],
python_version = "PY3",
srcs_version = "PY3",
deps = [
":timer",
"@absl_py//absl/testing:absltest",
],
)