diff options
author | Ian Lewis <ianlewis@google.com> | 2021-06-13 19:21:46 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-06-13 19:23:55 -0700 |
commit | 5c9e84622305dc9fd4e9b81eeb7309b8a894f99e (patch) | |
tree | cfa81aaac2356fc205b5f55a701d30ca3c2786bf /pkg/safecopy/BUILD | |
parent | b92e8ee8d6744d81383f4265faa008ccce894f5e (diff) |
Remove usermem dependency from marshal
Both marshal and usermem are depended on by many packages and a dependency on
marshal can often create circular dependencies. marshal should consider adding
internal dependencies carefully moving forward.
Fixes #6160
PiperOrigin-RevId: 379199882
Diffstat (limited to 'pkg/safecopy/BUILD')
-rw-r--r-- | pkg/safecopy/BUILD | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/safecopy/BUILD b/pkg/safecopy/BUILD index b77c40279..db5787302 100644 --- a/pkg/safecopy/BUILD +++ b/pkg/safecopy/BUILD @@ -18,6 +18,7 @@ go_library( ], visibility = ["//:sandbox"], deps = [ + "//pkg/abi/linux", "//pkg/syserror", "@org_golang_x_sys//unix:go_default_library", ], |