kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/go/util/compare/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 = "compare",
     7      srcs = ["compare.go"],
     8      importpath = "kythe.io/kythe/go/util/compare",
     9      deps = [
    10          "//kythe/proto:storage_go_proto",
    11          "@com_github_google_go_cmp//cmp",
    12          "@org_golang_google_protobuf//testing/protocmp",
    13      ],
    14  )
    15  
    16  go_test(
    17      name = "compare_test",
    18      srcs = ["compare_test.go"],
    19      library = ":compare",
    20      deps = ["//kythe/proto:storage_go_proto"],
    21  )