...

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

Documentation: edge-infra.dev/pkg/lib/compression

     1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
     2
     3go_library(
     4    name = "compression",
     5    srcs = ["txz.go"],
     6    importpath = "edge-infra.dev/pkg/lib/compression",
     7    visibility = ["//visibility:public"],
     8    deps = ["@com_github_xi2_xz//:xz"],
     9)
    10
    11go_test(
    12    name = "compression_test",
    13    srcs = ["txz_test.go"],
    14    embed = [":compression"],
    15    deps = [
    16        "//pkg/lib/build/bazel",
    17        "@com_github_stretchr_testify//assert",
    18    ],
    19)

View as plain text