gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/tools/go_generics/tests/imports/BUILD (about) 1 load("//tools/go_generics/tests:defs.bzl", "go_generics_test") 2 3 package(default_applicable_licenses = ["//:license"]) 4 5 go_generics_test( 6 name = "imports", 7 consts = { 8 "n": "math.Uint32", 9 "m": "math.Uint64", 10 }, 11 imports = { 12 "sync": "sync", 13 "math": "mymathpath", 14 }, 15 inputs = ["input.go"], 16 output = "output.go", 17 types = { 18 "T": "sync.Mutex", 19 }, 20 ) 21 22 # @unused 23 glaze_ignore = [ 24 "input.go", 25 "output.go", 26 ]