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