fn main() {
#[cfg(feature = "generate")]
{
let config = prost_build::Config::new();
generate(config, "src");
}
#[cfg(all(feature = "generate", feature = "bytes"))]
{
let mut bytes_config = prost_build::Config::new();
bytes_config.bytes(&["."]);
generate(bytes_config, "src/bytes");
}
}
#[cfg(feature = "generate")]
fn generate(config: prost_build::Config, out_dir: impl AsRef<std::path::Path>) {
tonic_build::configure()
.build_server(false)
.out_dir(out_dir) .compile_with_config(
config,
&[
"googleapis/google/cloud/bigquery/storage/v1/storage.proto",
"googleapis/google/storage/v2/storage.proto",
"googleapis/google/pubsub/v1/pubsub.proto",
"googleapis/google/spanner/v1/spanner.proto",
"googleapis/google/devtools/artifactregistry/v1/artifact.proto",
"googleapis/google/devtools/artifactregistry/v1/yum_artifact.proto",
"googleapis/google/devtools/artifactregistry/v1/vpcsc_config.proto",
"googleapis/google/devtools/artifactregistry/v1/apt_artifact.proto",
"googleapis/google/devtools/artifactregistry/v1/file.proto",
"googleapis/google/devtools/artifactregistry/v1/package.proto",
"googleapis/google/devtools/artifactregistry/v1/repository.proto",
"googleapis/google/devtools/artifactregistry/v1/service.proto",
"googleapis/google/devtools/artifactregistry/v1/settings.proto",
"googleapis/google/devtools/artifactregistry/v1/tag.proto",
"googleapis/google/devtools/artifactregistry/v1/version.proto",
"googleapis/google/spanner/admin/database/v1/spanner_database_admin.proto",
"googleapis/google/spanner/admin/instance/v1/spanner_instance_admin.proto",
"googleapis/google/cloud/kms/v1/service.proto",
"googleapis/google/cloud/kms/v1/resources.proto",
"googleapis/google/cloud/kms/v1/ekm_service.proto",
],
&["googleapis"], )
.unwrap();
}