blob: 4ce905ba64e7551ba6c06699c01b7b21acbbd9a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
cc_library(
name = "base",
hdrs = [
"integers.hpp",
],
visibility = ["//visibility:public"],
)
cc_test(
name = "integers_tests",
srcs = [
"integers_tests.cpp",
],
deps = [
":base",
],
)
|