Skip to content

Commit

Permalink
run gazelle
Browse files Browse the repository at this point in the history
  • Loading branch information
s0l0ist committed Feb 14, 2023
1 parent fa156a3 commit dd372c0
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
2 changes: 1 addition & 1 deletion private_set_intersection/cpp/util/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ cc_library(
hdrs = ["status_matchers.h"],
visibility = ["//visibility:public"],
deps = [
"@com_google_absl//absl/status:statusor",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/types:optional",
"@com_google_googletest//:gtest",
"@com_google_absl//absl/status:statusor",
],
)
7 changes: 1 addition & 6 deletions private_set_intersection/go/client/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ go_library(
importpath = "github.com/openmined/psi/client",
visibility = ["//visibility:public"],
deps = [
"//private_set_intersection/go/datastructure",
"//private_set_intersection/go/version",
"//private_set_intersection/proto:psi_go_proto",
"@org_golang_google_protobuf//proto:go_default_library",
Expand All @@ -19,9 +18,5 @@ go_test(
name = "client_test",
srcs = ["client_test.go"],
embed = [":client"],
deps = [
"//private_set_intersection/go/server",
"//private_set_intersection/proto:psi_go_proto",
"@com_github_golang_protobuf//proto:go_default_library",
],
deps = ["//private_set_intersection/proto:psi_go_proto"],
)
2 changes: 1 addition & 1 deletion private_set_intersection/go/server/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ go_test(
embed = [":server"],
deps = [
"//private_set_intersection/go/client",
"//private_set_intersection/go/datastructure",
"//private_set_intersection/proto:psi_go_proto",
"@com_github_golang_protobuf//proto:go_default_library",
],
)
14 changes: 14 additions & 0 deletions private_set_intersection/proto/BUILD
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
load("@io_bazel_rules_go//go:def.bzl", "go_library")

#
# Copyright 2020 the authors listed in CONTRIBUTORS.md
#
Expand Down Expand Up @@ -47,3 +49,15 @@ python_proto_library(
name = "psi_python_proto",
protos = [":psi_proto"],
)

go_proto_library(
name = "psi_proto_go_proto",
importpath = "private_set_intersection/proto",
proto = ":psi_proto",
)

go_library(
name = "proto",
embed = [":psi_proto_go_proto"],
importpath = "private_set_intersection/proto",
)

0 comments on commit dd372c0

Please sign in to comment.