blob: ea57999162ff6c020910444e60ab5c62a7619c3e [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "loggingsyncbuffer",
srcs = ["loggingsyncbuffer.go"],
importpath = "go.skia.org/infra/go/loggingsyncbuffer",
visibility = ["//visibility:public"],
deps = ["@com_github_jcgregorio_logger//:logger"],
)
go_test(
name = "loggingsyncbuffer_test",
srcs = ["loggingsyncbuffer_test.go"],
embed = [":loggingsyncbuffer"],
deps = ["@com_github_stretchr_testify//assert"],
)