blob: 6c0602a4190fd2e16df54bdc8020dae45563f2e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
load("//:defs.bzl", "generate_interface")
generate_interface(
name = "kstdio",
interface = "kstdio",
license = "//:LICENSE.md",
visibility = ["//visibility:private"],
)
cc_test(
name = "test_kstdio",
srcs = [":kstdio", "test_kstdio.cpp"],
deps = [
":kstdio",
"@googletest//:gtest",
"@googletest//:gtest_main",
],
visibility = ["//visibility:private"],
)
|