2021-01-13 11:45:57 -08:00
# This file was automatically generated by BuildFileGenerator
2023-03-09 12:24:56 -08:00
# https://github.com/googleapis/rules_gapic/tree/master/bazel
2021-01-13 11:45:57 -08:00
# 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.
2024-02-23 14:23:21 -08:00
# buildifier: disable=load-on-top
2023-03-09 12:24:56 -08:00
# This is an API workspace, having public visibility by default makes perfect sense.
package(default_visibility = ["//visibility:public"])
2021-01-13 11:45:57 -08:00
##############################################################################
# Common
##############################################################################
2024-02-23 14:23:21 -08:00
# buildifier: disable=same-origin-load
2023-03-09 12:24:56 -08:00
load("@com_google_googleapis_imports//:imports.bzl", "proto_library_with_info")
2024-02-23 14:23:21 -08:00
load("@rules_proto//proto:defs.bzl", "proto_library")
2021-01-13 11:45:57 -08:00
proto_library(
name = "cloudprofiler_proto",
srcs = [
"profiler.proto",
],
deps = [
"//google/api:annotations_proto",
"//google/api:client_proto",
2023-03-09 12:24:56 -08:00
"//google/api:field_behavior_proto",
"//google/api:resource_proto",
2021-01-13 11:45:57 -08:00
"@com_google_protobuf//:duration_proto",
"@com_google_protobuf//:field_mask_proto",
2024-02-23 14:23:21 -08:00
"@com_google_protobuf//:timestamp_proto",
2021-01-13 11:45:57 -08:00
],
)
proto_library_with_info(
name = "cloudprofiler_proto_with_info",
deps = [
":cloudprofiler_proto",
"//google/cloud:common_resources_proto",
],
)
2023-03-09 12:24:56 -08:00
##############################################################################
# Java
##############################################################################
2024-02-23 14:23:21 -08:00
# buildifier: disable=same-origin-load
2023-03-09 12:24:56 -08:00
load(
"@com_google_googleapis_imports//:imports.bzl",
"java_gapic_assembly_gradle_pkg",
"java_gapic_library",
"java_gapic_test",
"java_grpc_library",
"java_proto_library",
)
2021-01-13 11:45:57 -08:00
java_proto_library(
name = "cloudprofiler_java_proto",
deps = [":cloudprofiler_proto"],
)
java_grpc_library(
name = "cloudprofiler_java_grpc",
srcs = [":cloudprofiler_proto"],
deps = [":cloudprofiler_java_proto"],
)
java_gapic_library(
name = "cloudprofiler_java_gapic",
srcs = [":cloudprofiler_proto_with_info"],
2023-03-09 12:24:56 -08:00
gapic_yaml = None,
2021-01-13 11:45:57 -08:00
grpc_service_config = "cloudprofiler_grpc_service_config.json",
2022-12-05 14:28:09 -08:00
rest_numeric_enums = True,
2023-03-09 12:24:56 -08:00
service_yaml = "cloudprofiler_v2.yaml",
2021-01-13 11:45:57 -08:00
test_deps = [
":cloudprofiler_java_grpc",
],
2022-06-22 17:00:31 -07:00
transport = "grpc+rest",
2021-01-13 11:45:57 -08:00
deps = [
":cloudprofiler_java_proto",
2023-03-09 12:24:56 -08:00
"//google/api:api_java_proto",
2021-01-13 11:45:57 -08:00
],
)
java_gapic_test(
name = "cloudprofiler_java_gapic_test_suite",
test_classes = [
2024-02-23 14:23:21 -08:00
"com.google.devtools.cloudprofiler.v2.ExportServiceClientHttpJsonTest",
"com.google.devtools.cloudprofiler.v2.ExportServiceClientTest",
2022-06-22 17:00:31 -07:00
"com.google.devtools.cloudprofiler.v2.ProfilerServiceClientHttpJsonTest",
2021-01-13 11:45:57 -08:00
"com.google.devtools.cloudprofiler.v2.ProfilerServiceClientTest",
],
runtime_deps = [":cloudprofiler_java_gapic_test"],
)
# Open Source Packages
java_gapic_assembly_gradle_pkg(
name = "google-cloud-devtools-cloudprofiler-v2-java",
2022-11-02 11:43:56 -07:00
include_samples = True,
2022-06-22 17:00:31 -07:00
transport = "grpc+rest",
2021-01-13 11:45:57 -08:00
deps = [
":cloudprofiler_java_gapic",
":cloudprofiler_java_grpc",
":cloudprofiler_java_proto",
":cloudprofiler_proto",
],
)
2023-03-09 12:24:56 -08:00
##############################################################################
# Go
##############################################################################
2024-02-23 14:23:21 -08:00
# buildifier: disable=same-origin-load
2023-03-09 12:24:56 -08:00
load(
"@com_google_googleapis_imports//:imports.bzl",
"go_gapic_assembly_pkg",
"go_gapic_library",
2025-10-09 06:45:49 -07:00
"go_grpc_library",
2023-03-09 12:24:56 -08:00
)
2025-10-09 06:45:49 -07:00
go_grpc_library(
2021-01-13 11:45:57 -08:00
name = "cloudprofiler_go_proto",
2023-11-15 08:26:06 -08:00
importpath = "cloud.google.com/go/cloudprofiler/apiv2/cloudprofilerpb",
2021-01-13 11:45:57 -08:00
protos = [":cloudprofiler_proto"],
deps = [
"//google/api:annotations_go_proto",
],
)
go_gapic_library(
name = "cloudprofiler_go_gapic",
srcs = [":cloudprofiler_proto_with_info"],
grpc_service_config = "cloudprofiler_grpc_service_config.json",
2023-11-15 08:26:06 -08:00
importpath = "cloud.google.com/go/cloudprofiler/apiv2;cloudprofiler",
2023-03-09 12:24:56 -08:00
metadata = True,
release_level = "beta",
2022-12-05 14:28:09 -08:00
rest_numeric_enums = True,
2021-01-13 11:45:57 -08:00
service_yaml = "cloudprofiler_v2.yaml",
2022-06-22 17:00:31 -07:00
transport = "grpc+rest",
2021-01-13 11:45:57 -08:00
deps = [
":cloudprofiler_go_proto",
"@io_bazel_rules_go//proto/wkt:duration_go_proto",
],
)
# Open Source Packages
go_gapic_assembly_pkg(
name = "gapi-cloud-devtools-cloudprofiler-v2-go",
deps = [
":cloudprofiler_go_gapic",
2023-03-09 12:24:56 -08:00
":cloudprofiler_go_gapic_srcjar-metadata.srcjar",
2023-04-17 12:23:12 -07:00
":cloudprofiler_go_gapic_srcjar-snippets.srcjar",
2021-01-13 11:45:57 -08:00
":cloudprofiler_go_gapic_srcjar-test.srcjar",
":cloudprofiler_go_proto",
],
)
2023-03-09 12:24:56 -08:00
##############################################################################
# Python
##############################################################################
2024-02-23 14:23:21 -08:00
# buildifier: disable=same-origin-load
2023-03-09 12:24:56 -08:00
load(
"@com_google_googleapis_imports//:imports.bzl",
"py_gapic_assembly_pkg",
"py_gapic_library",
"py_test",
)
2021-01-13 11:45:57 -08:00
py_gapic_library(
name = "cloudprofiler_py_gapic",
srcs = [":cloudprofiler_proto"],
grpc_service_config = "cloudprofiler_grpc_service_config.json",
2022-12-05 14:28:09 -08:00
rest_numeric_enums = True,
2023-02-16 10:50:07 -08:00
service_yaml = "cloudprofiler_v2.yaml",
2023-02-08 11:55:25 -08:00
transport = "grpc+rest",
2023-03-09 12:24:56 -08:00
deps = [
],
2021-01-13 11:45:57 -08:00
)
2022-07-27 16:04:10 -07:00
py_test(
name = "cloudprofiler_py_gapic_test",
srcs = [
"cloudprofiler_py_gapic_pytest.py",
"cloudprofiler_py_gapic_test.py",
],
legacy_create_init = False,
deps = [":cloudprofiler_py_gapic"],
)
2021-01-13 11:45:57 -08:00
# Open Source Packages
py_gapic_assembly_pkg(
name = "devtools-cloudprofiler-v2-py",
deps = [
":cloudprofiler_py_gapic",
],
)
2023-03-09 12:24:56 -08:00
##############################################################################
# PHP
##############################################################################
2024-02-23 14:23:21 -08:00
# buildifier: disable=same-origin-load
2023-03-09 12:24:56 -08:00
load(
"@com_google_googleapis_imports//:imports.bzl",
"php_gapic_assembly_pkg",
"php_gapic_library",
"php_proto_library",
)
2021-01-13 11:45:57 -08:00
php_proto_library(
name = "cloudprofiler_php_proto",
deps = [":cloudprofiler_proto"],
)
php_gapic_library(
name = "cloudprofiler_php_gapic",
2021-04-28 13:39:36 -07:00
srcs = [":cloudprofiler_proto_with_info"],
2021-01-13 11:45:57 -08:00
grpc_service_config = "cloudprofiler_grpc_service_config.json",
2024-09-09 12:25:19 -07:00
migration_mode = "NEW_SURFACE_ONLY",
2022-12-05 14:28:09 -08:00
rest_numeric_enums = True,
2023-02-22 10:21:02 -08:00
service_yaml = "cloudprofiler_v2.yaml",
2022-11-02 16:32:05 -07:00
transport = "grpc+rest",
2023-11-15 11:24:37 -08:00
deps = [
":cloudprofiler_php_proto",
],
2021-01-13 11:45:57 -08:00
)
# Open Source Packages
php_gapic_assembly_pkg(
name = "google-cloud-devtools-cloudprofiler-v2-php",
deps = [
":cloudprofiler_php_gapic",
":cloudprofiler_php_proto",
],
)
2023-03-09 12:24:56 -08:00
##############################################################################
# Node.js
##############################################################################
2024-02-23 14:23:21 -08:00
# buildifier: disable=same-origin-load
2023-03-09 12:24:56 -08:00
load(
"@com_google_googleapis_imports//:imports.bzl",
"nodejs_gapic_assembly_pkg",
"nodejs_gapic_library",
)
2021-01-13 11:45:57 -08:00
nodejs_gapic_library(
name = "cloudprofiler_nodejs_gapic",
package_name = "@google-cloud/cloudprofiler",
src = ":cloudprofiler_proto_with_info",
extra_protoc_parameters = ["metadata"],
grpc_service_config = "cloudprofiler_grpc_service_config.json",
package = "google.devtools.cloudprofiler.v2",
2022-12-05 14:28:09 -08:00
rest_numeric_enums = True,
2021-01-13 11:45:57 -08:00
service_yaml = "cloudprofiler_v2.yaml",
2022-11-02 16:32:05 -07:00
transport = "grpc+rest",
2021-01-13 11:45:57 -08:00
deps = [],
)
nodejs_gapic_assembly_pkg(
name = "devtools-cloudprofiler-v2-nodejs",
deps = [
":cloudprofiler_nodejs_gapic",
":cloudprofiler_proto",
],
)
2023-03-09 12:24:56 -08:00
##############################################################################
# Ruby
##############################################################################
2024-02-23 14:23:21 -08:00
# buildifier: disable=same-origin-load
2023-03-09 12:24:56 -08:00
load(
"@com_google_googleapis_imports//:imports.bzl",
"ruby_cloud_gapic_library",
"ruby_gapic_assembly_pkg",
"ruby_grpc_library",
"ruby_proto_library",
)
2021-01-13 11:45:57 -08:00
ruby_proto_library(
name = "cloudprofiler_ruby_proto",
deps = [":cloudprofiler_proto"],
)
ruby_grpc_library(
name = "cloudprofiler_ruby_grpc",
srcs = [":cloudprofiler_proto"],
deps = [":cloudprofiler_ruby_proto"],
)
2021-02-19 01:21:13 -08:00
ruby_cloud_gapic_library(
2021-01-13 11:45:57 -08:00
name = "cloudprofiler_ruby_gapic",
2021-04-28 13:39:36 -07:00
srcs = [":cloudprofiler_proto_with_info"],
2021-02-19 01:21:13 -08:00
extra_protoc_parameters = [
"ruby-cloud-api-id=cloudprofiler.googleapis.com",
"ruby-cloud-api-shortname=cloudprofiler",
2023-03-09 12:24:56 -08:00
"ruby-cloud-env-prefix=PROFILER",
"ruby-cloud-gem-name=google-cloud-profiler-v2",
2024-05-30 13:19:09 -07:00
"ruby-cloud-product-url=https://cloud.google.com/profiler/docs",
2021-02-19 01:21:13 -08:00
],
2021-01-13 11:45:57 -08:00
grpc_service_config = "cloudprofiler_grpc_service_config.json",
2022-12-05 14:28:09 -08:00
rest_numeric_enums = True,
2021-02-19 01:21:13 -08:00
ruby_cloud_description = "Cloud Profiler is a statistical, low-overhead profiler that continuously gathers CPU usage and memory-allocation information from your production applications. It attributes that information to the application's source code, helping you identify the parts of the application consuming the most resources, and otherwise illuminating the performance characteristics of the code.",
ruby_cloud_title = "Cloud Profiler V2",
2023-02-16 11:10:58 -08:00
service_yaml = "cloudprofiler_v2.yaml",
2023-03-07 13:43:20 -08:00
transport = "grpc+rest",
2021-01-13 11:45:57 -08:00
deps = [
":cloudprofiler_ruby_grpc",
":cloudprofiler_ruby_proto",
],
)
# Open Source Packages
ruby_gapic_assembly_pkg(
name = "google-cloud-devtools-cloudprofiler-v2-ruby",
deps = [
":cloudprofiler_ruby_gapic",
":cloudprofiler_ruby_grpc",
":cloudprofiler_ruby_proto",
],
)
2023-03-09 12:24:56 -08:00
##############################################################################
# C#
##############################################################################
2024-02-23 14:23:21 -08:00
# buildifier: disable=same-origin-load
2023-03-09 12:24:56 -08:00
load(
"@com_google_googleapis_imports//:imports.bzl",
"csharp_gapic_assembly_pkg",
"csharp_gapic_library",
"csharp_grpc_library",
"csharp_proto_library",
)
2021-01-13 11:45:57 -08:00
csharp_proto_library(
name = "cloudprofiler_csharp_proto",
deps = [":cloudprofiler_proto"],
)
csharp_grpc_library(
name = "cloudprofiler_csharp_grpc",
srcs = [":cloudprofiler_proto"],
deps = [":cloudprofiler_csharp_proto"],
)
csharp_gapic_library(
name = "cloudprofiler_csharp_gapic",
srcs = [":cloudprofiler_proto_with_info"],
common_resources_config = "@gax_dotnet//:Google.Api.Gax/ResourceNames/CommonResourcesConfig.json",
grpc_service_config = "cloudprofiler_grpc_service_config.json",
2022-12-05 14:28:09 -08:00
rest_numeric_enums = True,
2022-02-18 00:09:42 -08:00
service_yaml = "cloudprofiler_v2.yaml",
2023-02-16 10:50:07 -08:00
transport = "grpc+rest",
2021-01-13 11:45:57 -08:00
deps = [
":cloudprofiler_csharp_grpc",
":cloudprofiler_csharp_proto",
],
)
# Open Source Packages
csharp_gapic_assembly_pkg(
name = "google-cloud-devtools-cloudprofiler-v2-csharp",
deps = [
":cloudprofiler_csharp_gapic",
":cloudprofiler_csharp_grpc",
":cloudprofiler_csharp_proto",
],
)
2023-03-09 12:24:56 -08:00
##############################################################################
# C++
##############################################################################
2024-02-23 14:23:21 -08:00
# buildifier: disable=same-origin-load
2023-03-09 12:24:56 -08:00
load(
"@com_google_googleapis_imports//:imports.bzl",
"cc_grpc_library",
"cc_proto_library",
)
2021-11-22 12:23:29 -08:00
cc_proto_library(
name = "cloudprofiler_cc_proto",
deps = [":cloudprofiler_proto"],
)
cc_grpc_library(
name = "cloudprofiler_cc_grpc",
srcs = [":cloudprofiler_proto"],
grpc_only = True,
deps = [":cloudprofiler_cc_proto"],
)