Skip to content
Snippets Groups Projects
Commit a8ff1705 authored by Oliver Herms's avatar Oliver Herms
Browse files

BUILD file

parent ee59d00a
Branches
Tags
No related merge requests found
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
proto_library(
name = "bio_route_proto",
srcs = ["route.proto"],
visibility = ["//visibility:public"],
deps = ["//github.com/bio-routing/bio-rd/net/api:api_proto"],
)
go_proto_library(
name = "bio_route_go_proto",
importpath = "github.com/bio-routing/bio-rd/route/api",
proto = ":bio_route_proto",
visibility = ["//visibility:public"],
deps = ["//github.com/bio-routing/bio-rd/net/api:go_default_library"],
)
go_library(
name = "go_default_library",
embed = [":bio_route_go_proto"],
importpath = "github.com/bio-routing/bio-rd/route/api",
visibility = ["//visibility:public"],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment