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
33
34
35
36
37
38
|
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",
"@org_golang_google_protobuf//types/known/timestamppb",
],
)
proto_library(
name = "metric",
srcs = ["metric.proto"],
visibility = ["//:sandbox"],
deps = [
"@com_google_protobuf//:timestamp_proto",
],
)
go_test(
name = "metric_test",
srcs = ["metric_test.go"],
library = ":metric",
deps = [
":metric_go_proto",
"//pkg/eventchannel",
"@org_golang_google_protobuf//proto:go_default_library",
],
)
|