github.com/tiagovtristao/plz@v13.4.0+incompatible/src/cli/BUILD (about) 1 go_library( 2 name = "cli", 3 srcs = glob( 4 ["*.go"], 5 exclude = ["*_test.go"], 6 ), 7 visibility = ["PUBLIC"], 8 deps = [ 9 "//third_party/go:cli-init", 10 "//third_party/go:go-flags", 11 "//third_party/go:humanize", 12 "//third_party/go:logging", 13 "//third_party/go:semver", 14 "//third_party/go:terminal", 15 ], 16 ) 17 18 go_test( 19 name = "flags_test", 20 srcs = ["flags_test.go"], 21 deps = [ 22 ":cli", 23 "//third_party/go:testify", 24 ], 25 ) 26 27 go_test( 28 name = "logging_test", 29 srcs = ["logging_test.go"], 30 deps = [ 31 ":cli", 32 "//third_party/go:go-flags", 33 "//third_party/go:testify", 34 ], 35 ) 36 37 go_test( 38 name = "stdin_test", 39 srcs = ["stdin_test.go"], 40 data = ["test_data"], 41 deps = [ 42 ":cli", 43 "//third_party/go:testify", 44 ], 45 )