summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/fsimpl/memfs/BUILD
blob: d2450e8106d34965e0aeb41b2910ac4a0ce741af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
load("//tools/go_stateify:defs.bzl", "go_library", "go_test")

package(licenses = ["notice"])

load("//tools/go_generics:defs.bzl", "go_template_instance")

go_template_instance(
    name = "dentry_list",
    out = "dentry_list.go",
    package = "memfs",
    prefix = "dentry",
    template = "//pkg/ilist:generic_list",
    types = {
        "Element": "*dentry",
        "Linker": "*dentry",
    },
)

go_library(
    name = "memfs",
    srcs = [
        "dentry_list.go",
        "directory.go",
        "filesystem.go",
        "memfs.go",
        "regular_file.go",
        "symlink.go",
    ],
    importpath = "gvisor.dev/gvisor/pkg/sentry/fsimpl/memfs",
    deps = [
        "//pkg/abi/linux",
        "//pkg/sentry/context",
        "//pkg/sentry/kernel/auth",
        "//pkg/sentry/usermem",
        "//pkg/sentry/vfs",
        "//pkg/syserror",
    ],
)

go_test(
    name = "benchmark_test",
    size = "small",
    srcs = ["benchmark_test.go"],
    deps = [
        ":memfs",
        "//pkg/abi/linux",
        "//pkg/sentry/context",
        "//pkg/sentry/context/contexttest",
        "//pkg/sentry/fs",
        "//pkg/sentry/fs/tmpfs",
        "//pkg/sentry/kernel/auth",
        "//pkg/sentry/vfs",
        "//pkg/syserror",
    ],
)