mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			653 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			653 B
		
	
	
	
		
			Python
		
	
	
	
	
	
load("@rules_proto//proto:defs.bzl", "proto_library")
 | 
						|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
 | 
						|
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
 | 
						|
 | 
						|
package(default_visibility = ["//visibility:public"])
 | 
						|
 | 
						|
proto_library(
 | 
						|
    name = "internal_proto",
 | 
						|
    srcs = ["errors.proto"],
 | 
						|
    deps = ["@com_google_protobuf//:any_proto"],
 | 
						|
)
 | 
						|
 | 
						|
go_proto_library(
 | 
						|
    name = "internal_go_proto",
 | 
						|
    importpath = "github.com/grpc-ecosystem/grpc-gateway/internal",
 | 
						|
    proto = ":internal_proto",
 | 
						|
)
 | 
						|
 | 
						|
go_library(
 | 
						|
    name = "go_default_library",
 | 
						|
    embed = [":internal_go_proto"],
 | 
						|
    importpath = "github.com/grpc-ecosystem/grpc-gateway/internal",
 | 
						|
)
 |