diff options
Diffstat (limited to 'pkg/sentry/BUILD')
-rw-r--r-- | pkg/sentry/BUILD | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/pkg/sentry/BUILD b/pkg/sentry/BUILD new file mode 100644 index 000000000..e759dc36f --- /dev/null +++ b/pkg/sentry/BUILD @@ -0,0 +1,14 @@ +package(licenses = ["notice"]) + +# The "internal" package_group should be used as much as possible by packages +# that should remain Sentry-internal (i.e. not be exposed directly to command +# line tooling or APIs). +package_group( + name = "internal", + packages = [ + "//pkg/sentry/...", + "//runsc/...", + # Code generated by go_marshal relies on go_marshal libraries. + "//tools/go_marshal/...", + ], +) |