load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "build", srcs = [ "labels.go", "registry.go", ], importpath = "edge-infra.dev/pkg/edge/component/build", visibility = ["//visibility:public"], deps = ["//pkg/edge/constants"], ) go_test( name = "build_test", srcs = ["registry_test.go"], embed = [":build"], deps = ["@com_github_peterbourgon_ff_v3//:ff"], )