61 lines
1.6 KiB
Python
61 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 = "source_proto",
|
|
srcs = ["source_context.proto"],
|
|
deps = [
|
|
"//google/api:annotations_proto",
|
|
],
|
|
)
|
|
|
|
proto_library_with_info(
|
|
name = "source_proto_with_info",
|
|
deps = [":source_proto"],
|
|
)
|
|
|
|
##############################################################################
|
|
# Java
|
|
##############################################################################
|
|
load("@com_google_googleapis_imports//:imports.bzl", "java_proto_library")
|
|
|
|
java_proto_library(
|
|
name = "source_java_proto",
|
|
deps = [
|
|
":source_proto",
|
|
],
|
|
)
|
|
|
|
##############################################################################
|
|
# Go
|
|
##############################################################################
|
|
load(
|
|
"@com_google_googleapis_imports//:imports.bzl",
|
|
"go_gapic_assembly_pkg",
|
|
"go_proto_library",
|
|
)
|
|
|
|
go_proto_library(
|
|
name = "source_go_proto",
|
|
importpath = "google.golang.org/genproto/googleapis/devtools/source/v1",
|
|
protos = [":source_proto"],
|
|
deps = [
|
|
"//google/api:annotations_go_proto",
|
|
],
|
|
)
|
|
|
|
# Opensource Packages
|
|
go_gapic_assembly_pkg(
|
|
name = "gapi-cloud-source-v1-go",
|
|
deps = [
|
|
":source_go_proto",
|
|
],
|
|
)
|