diff options
Diffstat (limited to 'pkg/procid/BUILD')
-rw-r--r-- | pkg/procid/BUILD | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/pkg/procid/BUILD b/pkg/procid/BUILD deleted file mode 100644 index 2838b5aca..000000000 --- a/pkg/procid/BUILD +++ /dev/null @@ -1,40 +0,0 @@ -load("//tools:defs.bzl", "go_library", "go_test") - -package(licenses = ["notice"]) - -go_library( - name = "procid", - srcs = [ - "procid.go", - "procid_amd64.s", - "procid_arm64.s", - ], - visibility = ["//visibility:public"], -) - -go_test( - name = "procid_test", - size = "small", - srcs = [ - "procid_test.go", - ], - library = ":procid", - deps = [ - "//pkg/sync", - "@org_golang_x_sys//unix:go_default_library", - ], -) - -go_test( - name = "procid_net_test", - size = "small", - srcs = [ - "procid_net_test.go", - "procid_test.go", - ], - library = ":procid", - deps = [ - "//pkg/sync", - "@org_golang_x_sys//unix:go_default_library", - ], -) |