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
32
|
load("//tools:defs.bzl", "go_library", "go_test", "proto_library")
package(licenses = ["notice"])
go_library(
name = "metric",
srcs = ["metric.go"],
visibility = ["//:sandbox"],
deps = [
":metric_go_proto",
"//pkg/eventchannel",
"//pkg/log",
"//pkg/sync",
],
)
proto_library(
name = "metric",
srcs = ["metric.proto"],
visibility = ["//:sandbox"],
)
go_test(
name = "metric_test",
srcs = ["metric_test.go"],
library = ":metric",
deps = [
":metric_go_proto",
"//pkg/eventchannel",
"@com_github_golang_protobuf//proto:go_default_library",
],
)
|