blob: 0bfb7ee66597b38a0924c3bcd219621f9bafd2f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
cc_library(
name = "testing",
hdrs = [
"testing.hpp",
],
srcs = [
"testing.cpp",
],
deps = [
"//asl/base",
"//asl/formatting",
"//asl/io:print",
],
visibility = ["//visibility:public"],
)
|