Skip to content

Commit

Permalink
Merge pull request #10 from singnet/senna-hotfix-1
Browse files Browse the repository at this point in the history
[HOTFIX] Fixed BUILD to include new targets
  • Loading branch information
andre-senna authored Aug 27, 2024
2 parents fe77a01 + 885d3b7 commit 426b935
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ cc_grpc_library(
visibility = ["//visibility:public"],
)

cc_grpc_library(
name = "cache_network_cc_grpc",
srcs = [":cache_network_proto"],
grpc_only = True,
deps = [":cache_network_cc_proto"],
visibility = ["//visibility:public"],
)

cc_grpc_library(
name = "common_cc_grpc",
srcs = [":common_proto"],
Expand All @@ -24,6 +32,12 @@ cc_proto_library(
visibility = ["//visibility:public"],
)

cc_proto_library(
name = "cache_network_cc_proto",
deps = [":cache_network_proto"],
visibility = ["//visibility:public"],
)

cc_proto_library(
name = "common_cc_proto",
deps = [":common_proto"],
Expand All @@ -37,6 +51,13 @@ proto_library(
visibility = ["//visibility:public"],
)

proto_library(
name = "cache_network_proto",
srcs = ["attention_broker.proto"],
deps = [":common_proto"],
visibility = ["//visibility:public"],
)

proto_library(
name = "common_proto",
srcs = ["common.proto"],
Expand Down

0 comments on commit 426b935

Please sign in to comment.