352 lines
9.2 KiB
Python
352 lines
9.2 KiB
Python
# This is an API workspace, having public visibility by default makes perfect sense.
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
##############################################################################
|
|
# Common
|
|
##############################################################################
|
|
load("@rules_proto//proto:defs.bzl", "proto_library")
|
|
load("@com_google_googleapis_imports//:imports.bzl", "proto_library_with_info")
|
|
|
|
proto_library(
|
|
name = "storage_proto",
|
|
srcs = [
|
|
"arrow.proto",
|
|
"avro.proto",
|
|
"protobuf.proto",
|
|
"storage.proto",
|
|
"stream.proto",
|
|
"table.proto",
|
|
],
|
|
deps = [
|
|
"//google/api:annotations_proto",
|
|
"//google/api:client_proto",
|
|
"//google/api:field_behavior_proto",
|
|
"//google/api:resource_proto",
|
|
"//google/rpc:status_proto",
|
|
"@com_google_protobuf//:descriptor_proto",
|
|
"@com_google_protobuf//:empty_proto",
|
|
"@com_google_protobuf//:timestamp_proto",
|
|
"@com_google_protobuf//:wrappers_proto",
|
|
],
|
|
)
|
|
|
|
proto_library_with_info(
|
|
name = "storage_proto_with_info",
|
|
deps = [
|
|
":storage_proto",
|
|
"//google/cloud:common_resources_proto",
|
|
],
|
|
)
|
|
|
|
##############################################################################
|
|
# Java
|
|
##############################################################################
|
|
load(
|
|
"@com_google_googleapis_imports//:imports.bzl",
|
|
"java_gapic_assembly_gradle_pkg",
|
|
"java_gapic_library",
|
|
"java_gapic_test",
|
|
"java_grpc_library",
|
|
"java_proto_library",
|
|
)
|
|
|
|
java_proto_library(
|
|
name = "storage_java_proto",
|
|
deps = [":storage_proto"],
|
|
)
|
|
|
|
java_grpc_library(
|
|
name = "storage_java_grpc",
|
|
srcs = [":storage_proto"],
|
|
deps = [":storage_java_proto"],
|
|
)
|
|
|
|
java_gapic_library(
|
|
name = "storage_java_gapic",
|
|
srcs = [":storage_proto_with_info"],
|
|
gapic_yaml = "bigquerystorage_gapic.yaml",
|
|
grpc_service_config = "bigquerystorage_grpc_service_config.json",
|
|
test_deps = [
|
|
":storage_java_grpc",
|
|
],
|
|
deps = [
|
|
":storage_java_proto",
|
|
],
|
|
)
|
|
|
|
java_gapic_test(
|
|
name = "storage_java_gapic_test_suite",
|
|
test_classes = [
|
|
"com.google.cloud.bigquery.storage.v1beta2.BaseBigQueryReadClientTest",
|
|
],
|
|
runtime_deps = [":storage_java_gapic_test"],
|
|
)
|
|
|
|
# Open Source Packages
|
|
java_gapic_assembly_gradle_pkg(
|
|
name = "google-cloud-bigquery-storage-v1beta2-java",
|
|
deps = [
|
|
":storage_java_gapic",
|
|
":storage_java_grpc",
|
|
":storage_java_proto",
|
|
":storage_proto",
|
|
],
|
|
)
|
|
|
|
##############################################################################
|
|
# Go
|
|
##############################################################################
|
|
load(
|
|
"@com_google_googleapis_imports//:imports.bzl",
|
|
"go_gapic_assembly_pkg",
|
|
"go_gapic_library",
|
|
"go_proto_library",
|
|
"go_test",
|
|
)
|
|
|
|
go_proto_library(
|
|
name = "storage_go_proto",
|
|
compilers = ["@io_bazel_rules_go//proto:go_grpc"],
|
|
importpath = "google.golang.org/genproto/googleapis/cloud/bigquery/storage/v1beta2",
|
|
protos = [":storage_proto"],
|
|
deps = [
|
|
"//google/api:annotations_go_proto",
|
|
"//google/rpc:status_go_proto",
|
|
],
|
|
)
|
|
|
|
go_gapic_library(
|
|
name = "storage_go_gapic",
|
|
srcs = [":storage_proto_with_info"],
|
|
grpc_service_config = "bigquerystorage_grpc_service_config.json",
|
|
importpath = "cloud.google.com/go/bigquery/storage/apiv1beta2;storage",
|
|
service_yaml = "bigquerystorage_v1beta2.yaml",
|
|
deps = [
|
|
":storage_go_proto",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "storage_go_gapic_test",
|
|
srcs = [":storage_go_gapic_srcjar_test"],
|
|
embed = [":storage_go_gapic"],
|
|
importpath = "cloud.google.com/go/bigquery/storage/apiv1beta2",
|
|
)
|
|
|
|
# Open Source Packages
|
|
go_gapic_assembly_pkg(
|
|
name = "gapi-cloud-bigquery-storage-v1beta2-go",
|
|
deps = [
|
|
":storage_go_gapic",
|
|
":storage_go_gapic_srcjar-test.srcjar",
|
|
":storage_go_proto",
|
|
],
|
|
)
|
|
|
|
##############################################################################
|
|
# Python
|
|
##############################################################################
|
|
|
|
load(
|
|
"@com_google_googleapis_imports//:imports.bzl",
|
|
"py_gapic_assembly_pkg",
|
|
"py_gapic_library",
|
|
)
|
|
|
|
py_gapic_library(
|
|
name = "storage_py_gapic",
|
|
srcs = [":storage_proto"],
|
|
grpc_service_config = "bigquerystorage_grpc_service_config.json",
|
|
opt_args = [
|
|
"python-gapic-namespace=google.cloud",
|
|
"python-gapic-name=bigquery_storage",
|
|
],
|
|
)
|
|
|
|
py_gapic_assembly_pkg(
|
|
name = "bigquery-storage-v1beta2-py",
|
|
deps = [
|
|
":storage_py_gapic",
|
|
],
|
|
)
|
|
|
|
##############################################################################
|
|
# PHP
|
|
##############################################################################
|
|
load(
|
|
"@com_google_googleapis_imports//:imports.bzl",
|
|
"php_gapic_assembly_pkg",
|
|
"php_gapic_library",
|
|
"php_grpc_library",
|
|
"php_proto_library",
|
|
)
|
|
|
|
php_proto_library(
|
|
name = "storage_php_proto",
|
|
deps = [":storage_proto"],
|
|
)
|
|
|
|
php_grpc_library(
|
|
name = "storage_php_grpc",
|
|
srcs = [":storage_proto"],
|
|
deps = [":storage_php_proto"],
|
|
)
|
|
|
|
php_gapic_library(
|
|
name = "storage_php_gapic",
|
|
src = ":storage_proto_with_info",
|
|
gapic_yaml = "bigquerystorage_gapic.yaml",
|
|
grpc_service_config = "bigquerystorage_grpc_service_config.json",
|
|
package = "google.cloud.bigquery.storage.v1beta2",
|
|
service_yaml = "bigquerystorage_v1beta2.yaml",
|
|
deps = [
|
|
":storage_php_grpc",
|
|
":storage_php_proto",
|
|
],
|
|
)
|
|
|
|
# Open Source Packages
|
|
php_gapic_assembly_pkg(
|
|
name = "google-cloud-bigquery-storage-v1beta2-php",
|
|
deps = [
|
|
":storage_php_gapic",
|
|
":storage_php_grpc",
|
|
":storage_php_proto",
|
|
],
|
|
)
|
|
|
|
##############################################################################
|
|
# Node.js
|
|
##############################################################################
|
|
load(
|
|
"@com_google_googleapis_imports//:imports.bzl",
|
|
"nodejs_gapic_assembly_pkg",
|
|
"nodejs_gapic_library",
|
|
)
|
|
|
|
nodejs_gapic_library(
|
|
name = "storage_nodejs_gapic",
|
|
src = ":storage_proto_with_info",
|
|
extra_protoc_parameters = ["metadata"],
|
|
grpc_service_config = "bigquerystorage_grpc_service_config.json",
|
|
package = "google.cloud.bigquery.storage.v1beta2",
|
|
service_yaml = "bigquerystorage_v1beta2.yaml",
|
|
deps = [],
|
|
)
|
|
|
|
nodejs_gapic_assembly_pkg(
|
|
name = "bigquery-storage-v1beta2-nodejs",
|
|
deps = [
|
|
":storage_nodejs_gapic",
|
|
":storage_proto",
|
|
],
|
|
)
|
|
|
|
##############################################################################
|
|
# Ruby
|
|
##############################################################################
|
|
# load(
|
|
# "@com_google_googleapis_imports//:imports.bzl",
|
|
# "ruby_gapic_assembly_pkg",
|
|
# "ruby_gapic_library",
|
|
# "ruby_grpc_library",
|
|
# "ruby_proto_library",
|
|
# )
|
|
|
|
# ruby_proto_library(
|
|
# name = "storage_ruby_proto",
|
|
# deps = [":storage_proto"],
|
|
# )
|
|
|
|
# ruby_grpc_library(
|
|
# name = "storage_ruby_grpc",
|
|
# srcs = [":storage_proto"],
|
|
# deps = [":storage_ruby_proto"],
|
|
# )
|
|
|
|
# ruby_gapic_library(
|
|
# name = "storage_ruby_gapic",
|
|
# src = ":storage_proto_with_info",
|
|
# gapic_yaml = "bigquerystorage_gapic.yaml",
|
|
# package = "google.cloud.bigquery.storage.v1beta2",
|
|
# service_yaml = "bigquerystorage_v1beta2.yaml",
|
|
# deps = [
|
|
# ":storage_ruby_grpc",
|
|
# ":storage_ruby_proto",
|
|
# ],
|
|
# )
|
|
|
|
# ruby_gapic_assembly_pkg(
|
|
# name = "google-cloud-bigquery-storage-v1beta2-ruby",
|
|
# deps = [
|
|
# ":storage_ruby_gapic",
|
|
# ":storage_ruby_grpc",
|
|
# ":storage_ruby_proto",
|
|
# ],
|
|
# )
|
|
|
|
##############################################################################
|
|
# C#
|
|
##############################################################################
|
|
load(
|
|
"@com_google_googleapis_imports//:imports.bzl",
|
|
"csharp_gapic_assembly_pkg",
|
|
"csharp_gapic_library",
|
|
"csharp_grpc_library",
|
|
"csharp_proto_library",
|
|
)
|
|
|
|
csharp_proto_library(
|
|
name = "storage_csharp_proto",
|
|
deps = [":storage_proto"],
|
|
)
|
|
|
|
csharp_grpc_library(
|
|
name = "storage_csharp_grpc",
|
|
srcs = [":storage_proto"],
|
|
deps = [":storage_csharp_proto"],
|
|
)
|
|
|
|
csharp_gapic_library(
|
|
name = "storage_csharp_gapic",
|
|
srcs = [":storage_proto_with_info"],
|
|
common_resources_config = "@gax_dotnet//:Google.Api.Gax/ResourceNames/CommonResourcesConfig.json",
|
|
grpc_service_config = "bigquerystorage_grpc_service_config.json",
|
|
deps = [
|
|
":storage_csharp_grpc",
|
|
":storage_csharp_proto",
|
|
],
|
|
)
|
|
|
|
# Open Source Packages
|
|
csharp_gapic_assembly_pkg(
|
|
name = "google-cloud-bigquery-storage-v1beta2-csharp",
|
|
deps = [
|
|
":storage_csharp_gapic",
|
|
":storage_csharp_grpc",
|
|
":storage_csharp_proto",
|
|
],
|
|
)
|
|
|
|
##############################################################################
|
|
# C++
|
|
##############################################################################
|
|
load(
|
|
"@com_google_googleapis_imports//:imports.bzl",
|
|
"cc_grpc_library",
|
|
"cc_proto_library",
|
|
)
|
|
|
|
cc_proto_library(
|
|
name = "storage_cc_proto",
|
|
deps = [":storage_proto"],
|
|
)
|
|
|
|
cc_grpc_library(
|
|
name = "storage_cc_grpc",
|
|
srcs = [":storage_proto"],
|
|
generate_mocks = True,
|
|
grpc_only = True,
|
|
deps = [":storage_cc_proto"],
|
|
)
|