blob: 3a00bcc90754a2142be9f90b07d58d5c5597330f [file] [log] [blame]
load("@rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "stdlogging",
srcs = ["stdlogging.go"],
importpath = "go.skia.org/infra/go/sklog/stdlogging",
visibility = ["//visibility:public"],
deps = [
"//go/sklog/sklogimpl",
"@com_github_jcgregorio_logger//:logger",
],
)
go_test(
name = "stdlogging_test",
srcs = ["stdlogging_test.go"],
embed = [":stdlogging"],
deps = [
"//go/loggingsyncbuffer",
"//go/sklog/sklogimpl",
"@com_github_stretchr_testify//require",
],
)