blob: 7536ca474e1136b4ff554d35fba0f0cebc7f67c9 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "vec32",
srcs = ["vec.go"],
importpath = "go.skia.org/infra/go/vec32",
visibility = ["//visibility:public"],
)
go_test(
name = "vec32_test",
srcs = ["vec_test.go"],
embed = [":vec32"],
deps = [
"//go/testutils/unittest",
"@com_github_stretchr_testify//assert",
],
)