56 lines
1.6 KiB
Python
56 lines
1.6 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 = "attestation_proto",
|
|
srcs = [
|
|
"attestation.proto",
|
|
],
|
|
deps = [],
|
|
)
|
|
|
|
proto_library_with_info(
|
|
name = "attestation_proto_with_info",
|
|
deps = [":attestation_proto"],
|
|
)
|
|
|
|
##############################################################################
|
|
# Java
|
|
##############################################################################
|
|
load(
|
|
"@com_google_googleapis_imports//:imports.bzl",
|
|
"java_grpc_library",
|
|
"java_proto_library",
|
|
)
|
|
|
|
java_proto_library(
|
|
name = "attestation_java_proto",
|
|
deps = [":attestation_proto"],
|
|
)
|
|
|
|
java_grpc_library(
|
|
name = "attestation_java_grpc",
|
|
srcs = [":attestation_proto"],
|
|
deps = [":attestation_java_proto"],
|
|
)
|
|
|
|
##############################################################################
|
|
# Go
|
|
##############################################################################
|
|
load("@com_google_googleapis_imports//:imports.bzl", "go_proto_library")
|
|
|
|
go_proto_library(
|
|
name = "attestation_go_proto",
|
|
compilers = ["@io_bazel_rules_go//proto:go_grpc"],
|
|
importpath = "google.golang.org/genproto/googleapis/devtools/containeranalysis/v1beta1/attestation",
|
|
protos = [":attestation_proto"],
|
|
deps = [],
|
|
)
|