diff options
Diffstat (limited to 'tools/interface_generator/test')
-rw-r--r-- | tools/interface_generator/test/BUILD.bazel | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/interface_generator/test/BUILD.bazel b/tools/interface_generator/test/BUILD.bazel index 5d6348d..6c0602a 100644 --- a/tools/interface_generator/test/BUILD.bazel +++ b/tools/interface_generator/test/BUILD.bazel @@ -4,14 +4,16 @@ generate_interface( name = "kstdio", interface = "kstdio", license = "//:LICENSE.md", + visibility = ["//visibility:private"], ) cc_test( name = "test_kstdio", - srcs = ["kstdio_mock.cpp", "test_kstdio.cpp"], + srcs = [":kstdio", "test_kstdio.cpp"], deps = [ ":kstdio", "@googletest//:gtest", "@googletest//:gtest_main", ], + visibility = ["//visibility:private"], ) |