158 lines
4.5 KiB
Python
158 lines
4.5 KiB
Python
load("@rules_proto//proto:defs.bzl", "proto_library")
|
|
|
|
# This is an API workspace, having public visibility by default makes perfect sense.
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
##############################################################################
|
|
# Common
|
|
##############################################################################
|
|
load("@com_google_googleapis_imports//:imports.bzl", "proto_library_with_info")
|
|
|
|
proto_library(
|
|
name = "bigquerystorage_proto",
|
|
srcs = [
|
|
"arrow.proto",
|
|
"avro.proto",
|
|
"read_options.proto",
|
|
"storage.proto",
|
|
"table_reference.proto",
|
|
],
|
|
deps = [
|
|
"//google/api:annotations_proto",
|
|
"//google/api:client_proto",
|
|
"//google/api:field_behavior_proto",
|
|
"//google/api:resource_proto",
|
|
"@com_google_protobuf//:empty_proto",
|
|
"@com_google_protobuf//:timestamp_proto",
|
|
],
|
|
)
|
|
|
|
proto_library_with_info(
|
|
name = "bigquerystorage_proto_with_info",
|
|
deps = [
|
|
":bigquerystorage_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 = "bigquerystorage_java_proto",
|
|
deps = [":bigquerystorage_proto"],
|
|
)
|
|
|
|
java_grpc_library(
|
|
name = "bigquerystorage_java_grpc",
|
|
srcs = [":bigquerystorage_proto"],
|
|
deps = [":bigquerystorage_java_proto"],
|
|
)
|
|
|
|
java_gapic_library(
|
|
name = "bigquerystorage_java_gapic",
|
|
src = ":bigquerystorage_proto_with_info",
|
|
gapic_yaml = "bigquerystorage_gapic.yaml",
|
|
service_yaml = "bigquerystorage_v1beta1.yaml",
|
|
test_deps = [":bigquerystorage_java_grpc"],
|
|
deps = [":bigquerystorage_java_proto"],
|
|
)
|
|
|
|
java_gapic_test(
|
|
name = "bigquerystorage_java_gapic_test_suite",
|
|
test_classes = [
|
|
"com.google.cloud.bigquery.storage.v1beta1.BaseBigQueryStorageClientTest",
|
|
],
|
|
runtime_deps = [":bigquerystorage_java_gapic_test"],
|
|
)
|
|
|
|
# Opensource Packages
|
|
java_gapic_assembly_gradle_pkg(
|
|
name = "google-cloud-bigquerystorage-v1-java",
|
|
deps = [
|
|
":bigquerystorage_java_gapic",
|
|
":bigquerystorage_java_grpc",
|
|
":bigquerystorage_java_proto",
|
|
":bigquerystorage_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 = "bigquerystorage_go_proto",
|
|
compilers = ["@io_bazel_rules_go//proto:go_grpc"],
|
|
importpath = "google.golang.org/genproto/googleapis/cloud/bigquery/storage/v1beta1",
|
|
protos = [":bigquerystorage_proto"],
|
|
deps = [
|
|
"//google/api:annotations_go_proto",
|
|
],
|
|
)
|
|
|
|
go_gapic_library(
|
|
name = "bigquerystorage_go_gapic",
|
|
src = ":bigquerystorage_proto_with_info",
|
|
gapic_yaml = "bigquerystorage_gapic.yaml",
|
|
importpath = "cloud.google.com/go/bigquery/datatransfer/apiv1",
|
|
service_yaml = "bigquerystorage_v1beta1.yaml",
|
|
deps = [":bigquerystorage_go_proto"],
|
|
)
|
|
|
|
go_test(
|
|
name = "bigquerystorage_go_gapic_test",
|
|
srcs = [":bigquerystorage_go_gapic_srcjar_test"],
|
|
embed = [":bigquerystorage_go_gapic"],
|
|
importpath = "cloud.google.com/go/bigquery/storage/apiv1beta1",
|
|
)
|
|
|
|
# Opensource Packages
|
|
go_gapic_assembly_pkg(
|
|
name = "gapi-cloud-bigquerystorage-v1-go",
|
|
deps = [
|
|
":bigquerystorage_go_gapic",
|
|
":bigquerystorage_go_gapic_srcjar-smoke-test.srcjar",
|
|
":bigquerystorage_go_gapic_srcjar-test.srcjar",
|
|
":bigquerystorage_go_proto",
|
|
],
|
|
)
|
|
|
|
##############################################################################
|
|
# C++
|
|
##############################################################################
|
|
load(
|
|
"@com_google_googleapis_imports//:imports.bzl",
|
|
"cc_grpc_library",
|
|
"cc_proto_library",
|
|
)
|
|
|
|
cc_proto_library(
|
|
name = "bigquerystorage_cc_proto",
|
|
deps = [":bigquerystorage_proto"],
|
|
)
|
|
|
|
cc_grpc_library(
|
|
name = "bigquerystorage_cc_grpc",
|
|
srcs = [":bigquerystorage_proto"],
|
|
generate_mocks = True,
|
|
grpc_only = True,
|
|
deps = [":bigquerystorage_cc_proto"],
|
|
)
|