diff options
Diffstat (limited to 'pkg/procid/BUILD')
-rw-r--r-- | pkg/procid/BUILD | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/pkg/procid/BUILD b/pkg/procid/BUILD index aa3e3ac0b..2838b5aca 100644 --- a/pkg/procid/BUILD +++ b/pkg/procid/BUILD @@ -19,7 +19,10 @@ go_test( "procid_test.go", ], library = ":procid", - deps = ["//pkg/sync"], + deps = [ + "//pkg/sync", + "@org_golang_x_sys//unix:go_default_library", + ], ) go_test( @@ -30,5 +33,8 @@ go_test( "procid_test.go", ], library = ":procid", - deps = ["//pkg/sync"], + deps = [ + "//pkg/sync", + "@org_golang_x_sys//unix:go_default_library", + ], ) |