blob: 3606141ba36e78795c49a5a5cf23b0394838c08b [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "buildbucket",
srcs = ["buildbucket.go"],
importpath = "go.skia.org/infra/go/buildbucket",
visibility = ["//visibility:public"],
deps = [
"//go/buildbucket/common",
"//go/skerr",
"@org_chromium_go_luci//buildbucket/proto",
"@org_chromium_go_luci//grpc/prpc",
"@org_golang_google_protobuf//types/known/structpb",
],
)
go_test(
name = "buildbucket_test",
srcs = ["buildbucket_test.go"],
deps = [
"//go/buildbucket/bb_testutils",
"//go/deepequal/assertdeep",
"//go/testutils/unittest",
"@com_github_stretchr_testify//require",
"@io_bazel_rules_go//proto/wkt:timestamp_go_proto",
"@org_chromium_go_luci//buildbucket/proto",
],
)