kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/go/serving/pipeline/nodes/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 = "nodes", 7 srcs = ["nodes.go"], 8 importpath = "kythe.io/kythe/go/serving/pipeline/nodes", 9 deps = [ 10 "//kythe/go/util/compare", 11 "//kythe/go/util/schema", 12 "//kythe/go/util/schema/edges", 13 "//kythe/go/util/schema/facts", 14 "//kythe/proto:schema_go_proto", 15 "//kythe/proto:storage_go_proto", 16 "@com_github_apache_beam//sdks/go/pkg/beam", 17 ], 18 ) 19 20 go_test( 21 name = "nodes_test", 22 srcs = ["nodes_test.go"], 23 library = ":nodes", 24 deps = [ 25 "//kythe/go/util/schema/edges", 26 "//kythe/go/util/schema/facts", 27 "//kythe/go/util/schema/nodes", 28 "//kythe/proto:schema_go_proto", 29 "//kythe/proto:storage_go_proto", 30 "@com_github_apache_beam//sdks/go/pkg/beam", 31 "@com_github_apache_beam//sdks/go/pkg/beam/testing/passert", 32 "@com_github_apache_beam//sdks/go/pkg/beam/testing/ptest", 33 "@com_github_apache_beam//sdks/go/pkg/beam/x/debug", 34 ], 35 )