diff options
author | Christopher Koch <chrisko@google.com> | 2019-07-29 17:17:58 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-07-29 17:19:09 -0700 |
commit | a3e9031e665e5707ff1d181a577a808ff6d67452 (patch) | |
tree | d216f2f76fb880c0af563d4884c7271fdb0192f0 /pkg/unet/BUILD | |
parent | 5fdb945a0dc7a05329f97dc1ca193baf1b3448f3 (diff) |
Use x/sys/unix for sentry/host interaction; abi is for guest/sentry.
PiperOrigin-RevId: 260613864
Diffstat (limited to 'pkg/unet/BUILD')
-rw-r--r-- | pkg/unet/BUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/unet/BUILD b/pkg/unet/BUILD index 769509e80..cbd92fc05 100644 --- a/pkg/unet/BUILD +++ b/pkg/unet/BUILD @@ -11,8 +11,8 @@ go_library( importpath = "gvisor.dev/gvisor/pkg/unet", visibility = ["//visibility:public"], deps = [ - "//pkg/abi/linux", "//pkg/gate", + "@org_golang_x_sys//unix:go_default_library", ], ) |