forked from google/goblet
-
Notifications
You must be signed in to change notification settings - Fork 2
/
BUILD
31 lines (29 loc) · 1.07 KB
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("@bazel_gazelle//:def.bzl", "gazelle")
# gazelle:prefix github.com/google/goblet
# gazelle:build_file_name BUILD
gazelle(name = "gazelle")
go_library(
name = "go_default_library",
srcs = [
"git_protocol_v2_handler.go",
"goblet.go",
"http_proxy_server.go",
"io.go",
"managed_repository.go",
"reporting.go",
],
importpath = "github.com/google/goblet",
visibility = ["//visibility:public"],
deps = [
"@com_github_go_git_go_git_v5//:go_default_library",
"@com_github_go_git_go_git_v5//plumbing:go_default_library",
"@com_github_google_gitprotocolio//:go_default_library",
"@com_github_grpc_ecosystem_grpc_gateway//runtime:go_default_library",
"@io_opencensus_go//stats:go_default_library",
"@io_opencensus_go//tag:go_default_library",
"@org_golang_google_grpc//codes:go_default_library",
"@org_golang_google_grpc//status:go_default_library",
"@org_golang_x_oauth2//:go_default_library",
],
)