kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/go/services/cli/BUILD (about) 1 load("//tools:build_rules/shims.bzl", "go_library") 2 3 package(default_visibility = ["//kythe:default_visibility"]) 4 5 go_library( 6 name = "cli", 7 srcs = [ 8 "cli.go", 9 "command_decor.go", 10 "command_diagnostics.go", 11 "command_docs.go", 12 "command_edges.go", 13 "command_identifiers.go", 14 "command_ls.go", 15 "command_nodes.go", 16 "command_source.go", 17 "commands_xrefs.go", 18 ], 19 importpath = "kythe.io/kythe/go/services/cli", 20 deps = [ 21 "//kythe/go/platform/vfs", 22 "//kythe/go/services/filetree", 23 "//kythe/go/services/graph", 24 "//kythe/go/services/web", 25 "//kythe/go/services/xrefs", 26 "//kythe/go/serving/identifiers", 27 "//kythe/go/util/flagutil", 28 "//kythe/go/util/kytheuri", 29 "//kythe/go/util/log", 30 "//kythe/go/util/markedsource", 31 "//kythe/go/util/schema/edges", 32 "//kythe/go/util/schema/facts", 33 "//kythe/proto:common_go_proto", 34 "//kythe/proto:filetree_go_proto", 35 "//kythe/proto:graph_go_proto", 36 "//kythe/proto:identifier_go_proto", 37 "//kythe/proto:xref_go_proto", 38 "@com_github_google_subcommands//:subcommands", 39 "@org_bitbucket_creachadair_stringset//:stringset", 40 "@org_golang_google_protobuf//proto", 41 ], 42 )