25 lines
588 B
Python
25 lines
588 B
Python
"""Generated definition of objc_proto_compile."""
|
|
|
|
load(
|
|
"//:defs.bzl",
|
|
"ProtoPluginInfo",
|
|
"proto_compile_attrs",
|
|
"proto_compile_impl",
|
|
)
|
|
|
|
# Create compile rule
|
|
objc_proto_compile = rule(
|
|
implementation = proto_compile_impl,
|
|
attrs = dict(
|
|
proto_compile_attrs,
|
|
_plugins = attr.label_list(
|
|
providers = [ProtoPluginInfo],
|
|
default = [
|
|
Label("//objc:objc_plugin"),
|
|
],
|
|
doc = "List of protoc plugins to apply",
|
|
),
|
|
),
|
|
toolchains = [str(Label("//protobuf:toolchain_type"))],
|
|
)
|