kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/go/storage/inmemory/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 = "inmemory",
     7      srcs = ["inmemory.go"],
     8      importpath = "kythe.io/kythe/go/storage/inmemory",
     9      deps = [
    10          "//kythe/go/services/graphstore",
    11          "//kythe/go/storage/keyvalue",
    12          "//kythe/go/util/compare",
    13          "//kythe/proto:storage_go_proto",
    14          "@org_golang_google_protobuf//proto",
    15      ],
    16  )
    17  
    18  go_test(
    19      name = "inmemory_test",
    20      srcs = ["inmemory_test.go"],
    21      library = ":inmemory",
    22      deps = [
    23          "//kythe/go/storage/keyvalue",
    24          "@com_github_google_go_cmp//cmp",
    25      ],
    26  )