...
1load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
4 name = "pstest",
5 srcs = [
6 "options.go",
7 "pstest.go",
8 ],
9 importpath = "edge-infra.dev/test/f2/x/pstest",
10 visibility = ["//visibility:public"],
11 deps = [
12 "//test/f2",
13 "//test/f2/fctx",
14 "//test/f2/integration",
15 "@com_google_cloud_go_pubsub//:pubsub",
16 "@com_google_cloud_go_pubsub//pstest",
17 "@org_golang_google_api//option",
18 "@org_golang_google_grpc//:grpc",
19 "@org_golang_google_grpc//credentials/insecure",
20 ],
21)
View as plain text