From 538e33b2a3e51adb4e7f5d718b7c4bc7aca6a306 Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Thu, 19 May 2022 12:08:30 -0700 Subject: [PATCH] Add filegroup for validate.proto In order to include this in rust sources this needs to be included directly downstream. Ideally we had a simple proto library target we could use instead, but the rust ecosystem is a bit bifurcated. https://github.com/bazelbuild/rules_rust/issues/915 Signed-off-by: Keith Smiley --- validate/BUILD | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/validate/BUILD b/validate/BUILD index 5040d640f..c9de5afbb 100644 --- a/validate/BUILD +++ b/validate/BUILD @@ -53,6 +53,11 @@ java_proto_library( deps = [":validate_proto"], ) +filegroup( + name = "validate_src", + srcs = ["validate.proto"], +) + alias( name = "go_default_library", actual = ":validate_go",