...

Text file src/edge-infra.dev/third_party/gopherage/pkg/cov/BUILD.bazel

Documentation: edge-infra.dev/third_party/gopherage/pkg/cov

     1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
     2
     3go_library(
     4    name = "cov",
     5    srcs = [
     6        "aggregate.go",
     7        "diff.go",
     8        "filter.go",
     9        "merge.go",
    10        "util.go",
    11    ],
    12    importpath = "edge-infra.dev/third_party/gopherage/pkg/cov",
    13    visibility = ["//visibility:public"],
    14    deps = ["@org_golang_x_tools//cover"],
    15)
    16
    17go_test(
    18    name = "cov_test",
    19    srcs = [
    20        "aggregate_test.go",
    21        "diff_test.go",
    22        "equality_test.go",
    23        "filter_test.go",
    24        "merge_test.go",
    25        "util_test.go",
    26    ],
    27    embed = [":cov"],
    28    deps = ["@org_golang_x_tools//cover"],
    29)

View as plain text