summaryrefslogtreecommitdiffhomepage
path: root/tools/go_marshal/gomarshal/BUILD
blob: a0eae649235d032e636f585145750eae291053ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
load("@io_bazel_rules_go//go:def.bzl", "go_library")

package(licenses = ["notice"])

go_library(
    name = "gomarshal",
    srcs = [
        "generator.go",
        "generator_interfaces.go",
        "generator_tests.go",
        "util.go",
    ],
    importpath = "gvisor.dev/gvisor/tools/go_marshal/gomarshal",
    visibility = [
        "//:sandbox",
    ],
)