22 lines
544 B
Python
22 lines
544 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "test_driver",
|
|
srcs = [
|
|
"test_driver.go",
|
|
"test_driver_datum.go",
|
|
"test_driver_helper.go",
|
|
"test_driver_mydecimal.go",
|
|
],
|
|
importpath = "github.com/pingcap/tidb/parser/test_driver",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//parser/ast",
|
|
"//parser/charset",
|
|
"//parser/format",
|
|
"//parser/mysql",
|
|
"//parser/types",
|
|
"@com_github_pingcap_errors//:errors",
|
|
],
|
|
)
|