gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/pkg/pool/BUILD (about) 1 load("//tools:defs.bzl", "go_library", "go_test") 2 3 package( 4 default_applicable_licenses = ["//:license"], 5 default_visibility = ["//visibility:public"], 6 licenses = ["notice"], 7 ) 8 9 go_library( 10 name = "pool", 11 srcs = [ 12 "pool.go", 13 ], 14 deps = [ 15 "//pkg/sync", 16 ], 17 ) 18 19 go_test( 20 name = "pool_test", 21 size = "small", 22 srcs = [ 23 "pool_test.go", 24 ], 25 library = ":pool", 26 )