From 05758f34b2f65b7e6b118d3719cb8ce37eb4bc79 Mon Sep 17 00:00:00 2001 From: gVisor bot Date: Thu, 5 Dec 2019 05:43:52 -0800 Subject: [PATCH] Explicitly export files needed by other packages PiperOrigin-RevId: 283955946 --- test/syscalls/linux/BUILD | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/syscalls/linux/BUILD b/test/syscalls/linux/BUILD index 9cca78a93..7ce2e6270 100644 --- a/test/syscalls/linux/BUILD +++ b/test/syscalls/linux/BUILD @@ -6,6 +6,16 @@ package( licenses = ["notice"], ) +exports_files( + [ + "socket.cc", + "socket_ipv4_udp_unbound_loopback.cc", + "tcp_socket.cc", + "udp_socket.cc", + ], + visibility = ["//:sandbox"], +) + cc_binary( name = "sigaltstack_check", testonly = 1,