1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- 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 = [
- "//google/devtools/containeranalysis/v1beta1/common:common_proto",
- ],
- )
- 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 = [
- "//google/devtools/containeranalysis/v1beta1/common:common_go_proto",
- ],
- )
|