forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.bazel
39 lines (37 loc) · 1.15 KB
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "resourcegrouptag",
srcs = ["resource_group_tag.go"],
importpath = "github.com/pingcap/tidb/util/resourcegrouptag",
visibility = ["//visibility:public"],
deps = [
"//parser",
"//tablecodec/rowindexcodec",
"@com_github_pingcap_errors//:errors",
"@com_github_pingcap_kvproto//pkg/coprocessor",
"@com_github_pingcap_kvproto//pkg/kvrpcpb",
"@com_github_pingcap_tipb//go-tipb",
"@com_github_tikv_client_go_v2//tikvrpc",
],
)
go_test(
name = "resourcegrouptag_test",
timeout = "short",
srcs = [
"main_test.go",
"resource_group_tag_test.go",
],
embed = [":resourcegrouptag"],
flaky = True,
deps = [
"//parser",
"//testkit/testsetup",
"//util/hack",
"@com_github_pingcap_kvproto//pkg/coprocessor",
"@com_github_pingcap_kvproto//pkg/kvrpcpb",
"@com_github_pingcap_tipb//go-tipb",
"@com_github_stretchr_testify//require",
"@com_github_tikv_client_go_v2//tikvrpc",
"@org_uber_go_goleak//:goleak",
],
)