blob: 698aac29993d034d7a71766c7f3f7534801d3f0e [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "kmeans",
srcs = ["kmeans.go"],
importpath = "go.skia.org/infra/perf/go/kmeans",
visibility = ["//visibility:public"],
)
go_test(
name = "kmeans_test",
srcs = ["kmeans_test.go"],
embed = [":kmeans"],
)