blob: 5c9d4f6f7b828425179320857aed69a50f63db41 [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 = ["@com_github_stretchr_testify//assert"],
)