blob: 6ec165d5b21a58545f03b4fe7583f887f94fbe0c [file] [log] [blame]
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +01001load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
4 name = "go_default_library",
5 srcs = [
6 "trace.pb.go",
7 "trace_config.pb.go",
8 ],
9 importpath = "github.com/census-instrumentation/opencensus-proto/gen-go/trace/v1",
10 visibility = ["//visibility:public"],
11 deps = [
12 "@com_github_census_instrumentation_opencensus_proto//gen-go/resource/v1:go_default_library",
13 "@com_github_golang_protobuf//proto:go_default_library",
14 "@io_bazel_rules_go//proto/wkt:timestamp_go_proto",
15 "@io_bazel_rules_go//proto/wkt:wrappers_go_proto",
16 ],
17)