fix: add Bazel targets for GAPIC libraries.
PiperOrigin-RevId: 339353277
This commit is contained in:
parent
a9f96addcc
commit
fcbc145b07
|
|
@ -1,4 +1,13 @@
|
|||
# This file was automatically generated by BuildFileGenerator
|
||||
# https://github.com/googleapis/gapic-generator/tree/master/rules_gapic/bazel
|
||||
|
||||
# Most of the manual changes to this file will be overwritten.
|
||||
# It's **only** allowed to change the following rule attribute values:
|
||||
# - names of *_gapic_assembly_* rules
|
||||
# - certain parameters of *_gapic_library rules, including but not limited to:
|
||||
# * extra_protoc_parameters
|
||||
# * extra_protoc_file_parameters
|
||||
# The complete list of preserved parameters can be found in the source code.
|
||||
|
||||
# This is an API workspace, having public visibility by default makes perfect sense.
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
|
@ -7,6 +16,7 @@ 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 = "budgets_proto",
|
||||
|
|
@ -26,11 +36,22 @@ proto_library(
|
|||
],
|
||||
)
|
||||
|
||||
proto_library_with_info(
|
||||
name = "budgets_proto_with_info",
|
||||
deps = [
|
||||
":budgets_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",
|
||||
)
|
||||
|
|
@ -46,12 +67,49 @@ java_grpc_library(
|
|||
deps = [":budgets_java_proto"],
|
||||
)
|
||||
|
||||
java_gapic_library(
|
||||
name = "budgets_java_gapic",
|
||||
src = ":budgets_proto_with_info",
|
||||
gapic_yaml = "billingbudget_gapic.yaml",
|
||||
grpc_service_config = "billingbudgets_grpc_service_config.json",
|
||||
package = "google.cloud.billing.budgets.v1",
|
||||
service_yaml = "billingbudgets.yaml",
|
||||
test_deps = [
|
||||
":budgets_java_grpc",
|
||||
],
|
||||
deps = [
|
||||
":budgets_java_proto",
|
||||
],
|
||||
)
|
||||
|
||||
java_gapic_test(
|
||||
name = "budgets_java_gapic_test_suite",
|
||||
test_classes = [
|
||||
"com.google.cloud.billing.budgets.v1.BudgetServiceClientTest",
|
||||
],
|
||||
runtime_deps = [":budgets_java_gapic_test"],
|
||||
)
|
||||
|
||||
# Open Source Packages
|
||||
java_gapic_assembly_gradle_pkg(
|
||||
name = "google-cloud-billing-budgets-v1-java",
|
||||
deps = [
|
||||
":budgets_java_gapic",
|
||||
":budgets_java_grpc",
|
||||
":budgets_java_proto",
|
||||
":budgets_proto",
|
||||
],
|
||||
)
|
||||
|
||||
##############################################################################
|
||||
# Go
|
||||
##############################################################################
|
||||
load(
|
||||
"@com_google_googleapis_imports//:imports.bzl",
|
||||
"go_gapic_assembly_pkg",
|
||||
"go_gapic_library",
|
||||
"go_proto_library",
|
||||
"go_test",
|
||||
)
|
||||
|
||||
go_proto_library(
|
||||
|
|
@ -65,12 +123,42 @@ go_proto_library(
|
|||
],
|
||||
)
|
||||
|
||||
go_gapic_library(
|
||||
name = "budgets_go_gapic",
|
||||
srcs = [":budgets_proto_with_info"],
|
||||
grpc_service_config = "billingbudgets_grpc_service_config.json",
|
||||
importpath = "cloud.google.com/go/billing/budgets/apiv1;budgets",
|
||||
service_yaml = "billingbudgets.yaml",
|
||||
deps = [
|
||||
":budgets_go_proto",
|
||||
],
|
||||
)
|
||||
|
||||
go_test(
|
||||
name = "budgets_go_gapic_test",
|
||||
srcs = [":budgets_go_gapic_srcjar_test"],
|
||||
embed = [":budgets_go_gapic"],
|
||||
importpath = "cloud.google.com/go/billing/budgets/apiv1",
|
||||
)
|
||||
|
||||
# Open Source Packages
|
||||
go_gapic_assembly_pkg(
|
||||
name = "gapi-cloud-billing-budgets-v1-go",
|
||||
deps = [
|
||||
":budgets_go_gapic",
|
||||
":budgets_go_gapic_srcjar-test.srcjar",
|
||||
":budgets_go_proto",
|
||||
],
|
||||
)
|
||||
|
||||
##############################################################################
|
||||
# Python
|
||||
##############################################################################
|
||||
load(
|
||||
"@com_google_googleapis_imports//:imports.bzl",
|
||||
"moved_proto_library",
|
||||
"py_gapic_assembly_pkg",
|
||||
"py_gapic_library",
|
||||
"py_grpc_library",
|
||||
"py_proto_library",
|
||||
)
|
||||
|
|
@ -102,11 +190,36 @@ py_grpc_library(
|
|||
deps = [":budgets_py_proto"],
|
||||
)
|
||||
|
||||
py_gapic_library(
|
||||
name = "budgets_py_gapic",
|
||||
src = ":budgets_proto_with_info",
|
||||
gapic_yaml = "billingbudget_gapic.yaml",
|
||||
grpc_service_config = "billingbudgets_grpc_service_config.json",
|
||||
package = "google.cloud.billing.budgets.v1",
|
||||
service_yaml = "billingbudgets.yaml",
|
||||
deps = [
|
||||
":budgets_py_grpc",
|
||||
":budgets_py_proto",
|
||||
],
|
||||
)
|
||||
|
||||
# Open Source Packages
|
||||
py_gapic_assembly_pkg(
|
||||
name = "billing-budgets-v1-py",
|
||||
deps = [
|
||||
":budgets_py_gapic",
|
||||
":budgets_py_grpc",
|
||||
":budgets_py_proto",
|
||||
],
|
||||
)
|
||||
|
||||
##############################################################################
|
||||
# PHP
|
||||
##############################################################################
|
||||
load(
|
||||
"@com_google_googleapis_imports//:imports.bzl",
|
||||
"php_gapic_assembly_pkg",
|
||||
"php_gapic_library",
|
||||
"php_grpc_library",
|
||||
"php_proto_library",
|
||||
)
|
||||
|
|
@ -122,6 +235,29 @@ php_grpc_library(
|
|||
deps = [":budgets_php_proto"],
|
||||
)
|
||||
|
||||
php_gapic_library(
|
||||
name = "budgets_php_gapic",
|
||||
src = ":budgets_proto_with_info",
|
||||
gapic_yaml = "billingbudget_gapic.yaml",
|
||||
grpc_service_config = "billingbudgets_grpc_service_config.json",
|
||||
package = "google.cloud.billing.budgets.v1",
|
||||
service_yaml = "billingbudgets.yaml",
|
||||
deps = [
|
||||
":budgets_php_grpc",
|
||||
":budgets_php_proto",
|
||||
],
|
||||
)
|
||||
|
||||
# Open Source Packages
|
||||
php_gapic_assembly_pkg(
|
||||
name = "google-cloud-billing-budgets-v1-php",
|
||||
deps = [
|
||||
":budgets_php_gapic",
|
||||
":budgets_php_grpc",
|
||||
":budgets_php_proto",
|
||||
],
|
||||
)
|
||||
|
||||
##############################################################################
|
||||
# Node.js
|
||||
##############################################################################
|
||||
|
|
@ -131,12 +267,30 @@ load(
|
|||
"nodejs_gapic_library",
|
||||
)
|
||||
|
||||
nodejs_gapic_library(
|
||||
name = "budgets_nodejs_gapic",
|
||||
src = ":budgets_proto_with_info",
|
||||
grpc_service_config = "billingbudgets_grpc_service_config.json",
|
||||
package = "google.cloud.billing.budgets.v1",
|
||||
service_yaml = "billingbudgets.yaml",
|
||||
deps = [],
|
||||
)
|
||||
|
||||
nodejs_gapic_assembly_pkg(
|
||||
name = "billing-budgets-v1-nodejs",
|
||||
deps = [
|
||||
":budgets_nodejs_gapic",
|
||||
":budgets_proto",
|
||||
],
|
||||
)
|
||||
|
||||
##############################################################################
|
||||
# Ruby
|
||||
##############################################################################
|
||||
load(
|
||||
"@com_google_googleapis_imports//:imports.bzl",
|
||||
"ruby_gapic_assembly_pkg",
|
||||
"ruby_gapic_library",
|
||||
"ruby_grpc_library",
|
||||
"ruby_proto_library",
|
||||
)
|
||||
|
|
@ -152,11 +306,36 @@ ruby_grpc_library(
|
|||
deps = [":budgets_ruby_proto"],
|
||||
)
|
||||
|
||||
ruby_gapic_library(
|
||||
name = "budgets_ruby_gapic",
|
||||
src = ":budgets_proto_with_info",
|
||||
gapic_yaml = "billingbudget_gapic.yaml",
|
||||
grpc_service_config = "billingbudgets_grpc_service_config.json",
|
||||
package = "google.cloud.billing.budgets.v1",
|
||||
service_yaml = "billingbudgets.yaml",
|
||||
deps = [
|
||||
":budgets_ruby_grpc",
|
||||
":budgets_ruby_proto",
|
||||
],
|
||||
)
|
||||
|
||||
# Open Source Packages
|
||||
ruby_gapic_assembly_pkg(
|
||||
name = "google-cloud-billing-budgets-v1-ruby",
|
||||
deps = [
|
||||
":budgets_ruby_gapic",
|
||||
":budgets_ruby_grpc",
|
||||
":budgets_ruby_proto",
|
||||
],
|
||||
)
|
||||
|
||||
##############################################################################
|
||||
# C#
|
||||
##############################################################################
|
||||
load(
|
||||
"@com_google_googleapis_imports//:imports.bzl",
|
||||
"csharp_gapic_assembly_pkg",
|
||||
"csharp_gapic_library",
|
||||
"csharp_grpc_library",
|
||||
"csharp_proto_library",
|
||||
)
|
||||
|
|
@ -172,7 +351,28 @@ csharp_grpc_library(
|
|||
deps = [":budgets_csharp_proto"],
|
||||
)
|
||||
|
||||
csharp_gapic_library(
|
||||
name = "budgets_csharp_gapic",
|
||||
srcs = [":budgets_proto_with_info"],
|
||||
grpc_service_config = "billingbudgets_grpc_service_config.json",
|
||||
common_resources_config = "@gax_dotnet//:Google.Api.Gax/ResourceNames/CommonResourcesConfig.json",
|
||||
deps = [
|
||||
":budgets_csharp_grpc",
|
||||
":budgets_csharp_proto",
|
||||
],
|
||||
)
|
||||
|
||||
# Open Source Packages
|
||||
csharp_gapic_assembly_pkg(
|
||||
name = "google-cloud-billing-budgets-v1-csharp",
|
||||
deps = [
|
||||
":budgets_csharp_gapic",
|
||||
":budgets_csharp_grpc",
|
||||
":budgets_csharp_proto",
|
||||
],
|
||||
)
|
||||
|
||||
##############################################################################
|
||||
# C++
|
||||
##############################################################################
|
||||
# Put your C++ code here
|
||||
# Put your C++ rules here
|
||||
|
|
|
|||
|
|
@ -0,0 +1,21 @@
|
|||
type: com.google.api.codegen.ConfigProto
|
||||
config_schema_version: 2.0.0
|
||||
# The settings of generated code in a specific language.
|
||||
language_settings:
|
||||
java:
|
||||
package_name: com.google.cloud.billing.budgets.v1
|
||||
python:
|
||||
package_name: google.cloud.billing_budgets_v1.gapic
|
||||
go:
|
||||
package_name: cloud.google.com/go/billing/budgets/apiv1
|
||||
csharp:
|
||||
package_name: Google.Cloud.Billing.Budgets.V1
|
||||
ruby:
|
||||
package_name: Google::Cloud::Billing::Budgets::V1
|
||||
php:
|
||||
package_name: Google\Cloud\Billing\Budgets\V1
|
||||
nodejs:
|
||||
package_name: billing-budgets.v1
|
||||
domain_layer_location: google-cloud
|
||||
interfaces:
|
||||
- name: google.cloud.billing.budgets.v1.BudgetService
|
||||
Loading…
Reference in New Issue