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