From 5c80185bca9c3d5d0146f5e62a5975f3b73f1496 Mon Sep 17 00:00:00 2001 From: Trey Ivy Date: Wed, 20 Nov 2024 14:24:49 +0000 Subject: [PATCH] workaround weird bazel issue --- pkg/proto/configuration/bb_portal/BUILD.bazel | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/pkg/proto/configuration/bb_portal/BUILD.bazel b/pkg/proto/configuration/bb_portal/BUILD.bazel index 1864723..25ee384 100644 --- a/pkg/proto/configuration/bb_portal/BUILD.bazel +++ b/pkg/proto/configuration/bb_portal/BUILD.bazel @@ -27,14 +27,7 @@ go_proto_library( go_library( name = "bb_portal", - srcs = ["bb_portal.pb.go"], + embed = [":bb_portal_go_proto"], importpath = "github.com/buildbarn/bb-portal/pkg/proto/configuration/bb_portal", visibility = ["//visibility:public"], - deps = [ - "@com_github_buildbarn_bb_storage//pkg/proto/configuration/global", - "@com_github_buildbarn_bb_storage//pkg/proto/configuration/grpc", - "@com_github_buildbarn_bb_storage//pkg/proto/configuration/http", - "@org_golang_google_protobuf//reflect/protoreflect", - "@org_golang_google_protobuf//runtime/protoimpl", - ], )