...

Text file src/edge-infra.dev/pkg/sds/lib/jsonpatch/BUILD.bazel

Documentation: edge-infra.dev/pkg/sds/lib/jsonpatch

     1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
     2
     3go_library(
     4    name = "jsonpatch",
     5    srcs = ["jsonpatch.go"],
     6    importpath = "edge-infra.dev/pkg/sds/lib/jsonpatch",
     7    visibility = ["//visibility:public"],
     8    deps = ["@in_gopkg_yaml_v2//:yaml_v2"],
     9)
    10
    11go_test(
    12    name = "jsonpatch_test",
    13    srcs = ["jsonpatch_test.go"],
    14    embed = [":jsonpatch"],
    15    deps = [
    16        "//pkg/sds/ien/k8s/apis/v1:apis",
    17        "//pkg/sds/ien/node",
    18        "@com_github_stretchr_testify//assert",
    19        "@com_github_stretchr_testify//require",
    20        "@io_k8s_api//core/v1:core",
    21    ],
    22)

View as plain text