From 52548b393f2060e57b133165c882cfcfef80665b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Harboe?= Date: Fri, 31 Jan 2025 10:59:27 +0100 Subject: [PATCH] plot: fix visibility nits MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Øyvind Harboe --- BUILD | 1 + sweep.bzl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/BUILD b/BUILD index 967b28b..2be9902 100644 --- a/BUILD +++ b/BUILD @@ -358,6 +358,7 @@ py_binary( ], main = "plot-retiming.py", deps = [requirement("matplotlib")], + visibility = ["//visibility:public"], ) filegroup( diff --git a/sweep.bzl b/sweep.bzl index 8f4ef80..1a15738 100644 --- a/sweep.bzl +++ b/sweep.bzl @@ -159,6 +159,6 @@ def orfs_sweep( name + "_repair_logs", ], outs = [name + "_retiming.pdf"], - cmd = "$(execpath :plot_repair) $(location " + name + "_retiming.pdf) $(locations " + name + "_repair_logs)", + cmd = "$(execpath @bazel-orfs//:plot_repair) $(location " + name + "_retiming.pdf) $(locations " + name + "_repair_logs)", visibility = visibility, )