blob: 7fbd36cfc7ee156486652fcb2e48679119848fb8 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
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"],
deps = ["//go/testutils/unittest"],
)