googleapis/google/cloud/devicestreaming/BUILD.bazel
Google APIs 90926b6dcb chore(ruby): Configure clients for Device Streaming
PiperOrigin-RevId: 759285815
2025-05-15 13:53:10 -07:00

36 lines
No EOL
1.1 KiB
Text

# This build file includes a target for the Ruby wrapper library for
# google-cloud-device_streaming.
load(
"@com_google_googleapis_imports//:imports.bzl",
"ruby_cloud_gapic_library",
"ruby_gapic_assembly_pkg",
)
# This is an API workspace, having public visibility by default makes perfect sense.
package(default_visibility = ["//visibility:public"])
# Export yaml configs.
exports_files(glob(["*.yaml"]))
# Generates a Ruby wrapper client for devicestreaming.
# Ruby wrapper clients are versionless, but are generated from source protos
# for a particular service version, v1 in this case.
ruby_cloud_gapic_library(
name = "devicestreaming_ruby_wrapper",
srcs = ["//google/cloud/devicestreaming/v1:devicestreaming_proto_with_info"],
extra_protoc_parameters = [
"ruby-cloud-gem-name=google-cloud-device_streaming",
"ruby-cloud-wrapper-of=v1:0.0",
],
service_yaml = "//google/cloud/devicestreaming/v1:devicestreaming_v1.yaml",
transport = "grpc+rest",
)
# Open Source package.
ruby_gapic_assembly_pkg(
name = "google-cloud-device_streaming-ruby",
deps = [
":devicestreaming_ruby_wrapper",
],
)