From cde00514e9ecc6e7bb6cde925ab2c92917e7273b Mon Sep 17 00:00:00 2001 From: Adam Cozzette Date: Mon, 25 Sep 2023 08:19:42 -0700 Subject: [PATCH] Expand lunit visibility to enable moving lua directory (#14199) We will soon be moving the upb/lua directory up to the top level, so this commit updates lunit's visibility to enable that. --- third_party/lunit/BUILD.bazel | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/third_party/lunit/BUILD.bazel b/third_party/lunit/BUILD.bazel index 86c8051196..689679f739 100644 --- a/third_party/lunit/BUILD.bazel +++ b/third_party/lunit/BUILD.bazel @@ -3,5 +3,8 @@ exports_files( "console.lua", "lunit.lua", ], - visibility = ["//upb/lua:__pkg__"], + visibility = [ + "//lua:__pkg__", + "//upb/lua:__pkg__", + ], )