From a1577d33130161bedb79e0558bfb20cc1db5e3b0 Mon Sep 17 00:00:00 2001 From: Victor Vasiliev Date: Wed, 29 Oct 2025 21:33:27 +0000 Subject: [PATCH] Add a missing SDL2 dep --- tools/render/BUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/render/BUILD b/tools/render/BUILD index 04cb343..60cfd09 100644 --- a/tools/render/BUILD +++ b/tools/render/BUILD @@ -12,11 +12,11 @@ # See the License for the specific language governing permissions and # limitations under the License. -licenses(["notice"]) - load("@bazel_skylib//:bzl_library.bzl", "bzl_library") load(":data_blob.bzl", "cc_data_blob") +licenses(["notice"]) + cc_data_blob( name = "font_data", src = "//third_party/fonts:DroidSans.ttf", @@ -86,6 +86,7 @@ cc_library( "@com_google_absl//absl/log", "@com_google_absl//absl/strings", "@com_google_absl//absl/time", + "@sdl2", ], )