Skip to content

Commit

Permalink
Redirect cc_proto_library to protobuf
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 683876696
Change-Id: I0444b3b3bc3ac67bb641d82fe1d67117a6e2bcae
  • Loading branch information
comius authored and copybara-github committed Oct 9, 2024
1 parent a2949e2 commit 013a082
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ module(

bazel_dep(name = "bazel_skylib", version = "1.7.1")
bazel_dep(name = "platforms", version = "0.0.10")
bazel_dep(name = "protobuf", version = "27.0")

cc_configure = use_extension("//cc:extensions.bzl", "cc_configure_extension")
use_repo(cc_configure, "local_config_cc", "local_config_cc_toolchains")
Expand Down
2 changes: 2 additions & 0 deletions cc/WORKSPACE.bzlmod
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# A completely empty WORKSPACE file to replace the original WORKSPACE content when enabling Bzlmod.
# No WORKSPACE prefix or suffix are added for this file.
3 changes: 2 additions & 1 deletion cc/defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
# limitations under the License.
"""Starlark rules for building C++ projects."""

load("@protobuf//bazel:cc_proto_library.bzl", _cc_proto_library = "cc_proto_library")
load("//cc:cc_binary.bzl", _cc_binary = "cc_binary")
load("//cc:cc_import.bzl", _cc_import = "cc_import")
load("//cc:cc_library.bzl", _cc_library = "cc_library")
Expand Down Expand Up @@ -42,7 +43,7 @@ cc_shared_library = _cc_shared_library
objc_library = _objc_library
objc_import = _objc_import

cc_proto_library = native.cc_proto_library # For compatibility with current users
cc_proto_library = _cc_proto_library # For compatibility with current users

# Toolchain rules

Expand Down

0 comments on commit 013a082

Please sign in to comment.