Files
tidb/pkg/server/internal/testserverclient/BUILD.bazel

25 lines
772 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "testserverclient",
srcs = ["server_client.go"],
importpath = "github.com/pingcap/tidb/pkg/server/internal/testserverclient",
visibility = ["//pkg/server:__subpackages__"],
deps = [
"//pkg/config",
"//pkg/errno",
"//pkg/kv",
"//pkg/parser/mysql",
"//pkg/server",
"//pkg/testkit",
"//pkg/testkit/testenv",
"//pkg/util/versioninfo",
"@com_github_go_sql_driver_mysql//:mysql",
"@com_github_pingcap_errors//:errors",
"@com_github_pingcap_failpoint//:failpoint",
"@com_github_pingcap_log//:log",
"@com_github_stretchr_testify//require",
"@org_uber_go_zap//:zap",
],
)