diff options
Diffstat (limited to 'runsc/config/BUILD')
-rw-r--r-- | runsc/config/BUILD | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/runsc/config/BUILD b/runsc/config/BUILD deleted file mode 100644 index 64295d283..000000000 --- a/runsc/config/BUILD +++ /dev/null @@ -1,32 +0,0 @@ -load("//tools:defs.bzl", "go_library", "go_test") - -package(licenses = ["notice"]) - -go_library( - name = "config", - srcs = [ - "config.go", - "flags.go", - ], - visibility = ["//:sandbox"], - deps = [ - "//pkg/refs", - "//pkg/sentry/control:control_go_proto", - "//pkg/sentry/watchdog", - "//pkg/sync", - "//runsc/flag", - ], -) - -go_test( - name = "config_test", - size = "small", - srcs = [ - "config_test.go", - ], - library = ":config", - deps = [ - "//pkg/sentry/control:control_go_proto", - "//runsc/flag", - ], -) |