Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/cpp/monitoring/build_rules.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
Utilities for building grpc and proto libraries from googleapis.
"""

load("@com_github_grpc_grpc//bazel:generate_cc.bzl", "generate_cc")
load("@rules_cc//cc:defs.bzl", native_cc_proto_library = "cc_proto_library")
load("@com_github_grpc_grpc//bazel:generate_cc.bzl", "generate_cc")

def _tf_cc_headers(ctx):
if len(ctx.attr.deps) != 1:
Expand Down Expand Up @@ -82,7 +82,7 @@ def cc_grpc_library(name, srcs, deps, service_namespace = "grpc", **kwargs):
)

grpc_proto_dep = "@com_github_grpc_grpc//:grpc++_codegen_proto"
cc_library(
native.cc_library(
name = name,
srcs = [":" + codegen_grpc_target],
hdrs = [":" + codegen_grpc_target],
Expand Down
Loading