tree: 6622869f1ac1823dff7a2ec23e2f9fb2bf2f0490
  1. BUILD.bazel
  2. defs.bzl
  3. objc_grpc_compile.bzl
  4. objc_proto_compile.bzl
  5. objc_proto_library.bzl
  6. README.md
  7. repositories.bzl
objc/README.md

Objective-C rules

Rules for generating Objective-C protobuf and gRPC .m & .h files and libraries using standard Protocol Buffers and gRPC. Libraries are created with the Bazel native objc_library

RuleDescription
objc_proto_compileGenerates Objective-C protobuf .m & .h artifacts
objc_grpc_compileGenerates Objective-C protobuf+gRPC .m & .h artifacts
objc_proto_libraryGenerates an Objective-C protobuf library using objc_library

objc_proto_compile

Generates Objective-C protobuf .m & .h artifacts

WORKSPACE

load("@rules_proto_grpc//objc:repositories.bzl", rules_proto_grpc_objc_repos="objc_repos")

rules_proto_grpc_objc_repos()

BUILD.bazel

load("@rules_proto_grpc//objc:defs.bzl", "objc_proto_compile")

objc_proto_compile(
    name = "person_objc_proto",
    deps = ["@rules_proto_grpc//example/proto:person_proto"],
)

Attributes

NameTypeMandatoryDefaultDescription
depslist<ProtoInfo>true[]List of labels that provide a ProtoInfo (such as native.proto_library)
verboseintfalse0The verbosity level. Supported values and results are 1: show command, 2: show command and sandbox after running protoc, 3: show command and sandbox before and after running protoc, 4. show env, command, expected outputs and sandbox before and after running protoc

objc_grpc_compile

Generates Objective-C protobuf+gRPC .m & .h artifacts

WORKSPACE

load("@rules_proto_grpc//objc:repositories.bzl", rules_proto_grpc_objc_repos="objc_repos")

rules_proto_grpc_objc_repos()

load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")

grpc_deps()

BUILD.bazel

load("@rules_proto_grpc//objc:defs.bzl", "objc_grpc_compile")

objc_grpc_compile(
    name = "greeter_objc_grpc",
    deps = ["@rules_proto_grpc//example/proto:greeter_grpc"],
)

Attributes

NameTypeMandatoryDefaultDescription
depslist<ProtoInfo>true[]List of labels that provide a ProtoInfo (such as native.proto_library)
verboseintfalse0The verbosity level. Supported values and results are 1: show command, 2: show command and sandbox after running protoc, 3: show command and sandbox before and after running protoc, 4. show env, command, expected outputs and sandbox before and after running protoc

objc_proto_library

Generates an Objective-C protobuf library using objc_library

WORKSPACE

load("@rules_proto_grpc//objc:repositories.bzl", rules_proto_grpc_objc_repos="objc_repos")

rules_proto_grpc_objc_repos()

BUILD.bazel

load("@rules_proto_grpc//objc:defs.bzl", "objc_proto_library")

objc_proto_library(
    name = "person_objc_library",
    deps = ["@rules_proto_grpc//example/proto:person_proto"],
)

Attributes

NameTypeMandatoryDefaultDescription
depslist<ProtoInfo>true[]List of labels that provide a ProtoInfo (such as native.proto_library)
verboseintfalse0The verbosity level. Supported values and results are 1: show command, 2: show command and sandbox after running protoc, 3: show command and sandbox before and after running protoc, 4. show env, command, expected outputs and sandbox before and after running protoc