mirror of
https://github.com/protocolbuffers/protobuf
synced 2026-08-26 02:23:14 -04:00
The module name does not actually make it into the name used in python imports, so this should allow py_proto_library to work for modules with hyphens in their name (i.e. `bazel build @com_google_protobuf-examples//:addressbook_py_pb2`). PiperOrigin-RevId: 733763224
13 lines
304 B
Text
13 lines
304 B
Text
"""Bazel module dependencies"""
|
|
|
|
module(
|
|
name = "com_google_protobuf-examples-with-hyphen",
|
|
version = "0.0.0",
|
|
compatibility_level = 1,
|
|
)
|
|
|
|
bazel_dep(name = "protobuf", version = "0.0.0", repo_name = "com_google_protobuf")
|
|
local_path_override(
|
|
module_name = "protobuf",
|
|
path = "..",
|
|
)
|