gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/test/runner/fuse/BUILD (about) 1 load("//tools:defs.bzl", "go_binary") 2 3 package( 4 default_applicable_licenses = ["//:license"], 5 licenses = ["notice"], 6 ) 7 8 go_binary( 9 name = "fuse", 10 srcs = ["fuse.go"], 11 visibility = [ 12 "//visibility:public", 13 ], 14 deps = [ 15 "//pkg/log", 16 "//runsc/specutils", 17 "@com_github_hanwen_go_fuse_v2//fs:go_default_library", 18 "@com_github_hanwen_go_fuse_v2//fuse:go_default_library", 19 "@org_golang_x_sys//unix:go_default_library", 20 ], 21 )