blob: f559f1126b9ac0c4b9ae973c86fdcdd95bc1cd42 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "types",
srcs = ["types.go"],
importpath = "go.skia.org/infra/fiddlek/go/types",
visibility = ["//visibility:public"],
deps = ["//fiddlek/go/linenumbers"],
)
go_test(
name = "types_test",
srcs = ["types_test.go"],
embed = [":types"],
deps = [
"//go/testutils/unittest",
"@com_github_stretchr_testify//assert",
],
)