kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/go/storage/stream/BUILD (about)

     1  load("//tools:build_rules/shims.bzl", "go_library", "go_test")
     2  
     3  package(default_visibility = ["//kythe:default_visibility"])
     4  
     5  go_library(
     6      name = "stream",
     7      srcs = ["stream.go"],
     8      importpath = "kythe.io/kythe/go/storage/stream",
     9      deps = [
    10          "//kythe/go/platform/delimited",
    11          "//kythe/go/util/log",
    12          "//kythe/go/util/schema/facts",
    13          "//kythe/proto:common_go_proto",
    14          "//kythe/proto:storage_go_proto",
    15          "@org_golang_google_protobuf//encoding/protojson",
    16          "@org_golang_google_protobuf//proto",
    17      ],
    18  )
    19  
    20  go_test(
    21      name = "stream_test",
    22      size = "small",
    23      srcs = ["stream_test.go"],
    24      library = ":stream",
    25      visibility = ["//visibility:private"],
    26      deps = [
    27          "//kythe/go/platform/delimited",
    28          "//kythe/go/util/compare",
    29          "//kythe/proto:common_go_proto",
    30          "//kythe/proto:storage_go_proto",
    31          "@org_golang_google_protobuf//encoding/protojson",
    32          "@org_golang_google_protobuf//proto",
    33      ],
    34  )