blob: e759dc36f62bae6a557c7da6a2686d1b3cf1df42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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/...",
],
)
|