forked from sonic-net/sonic-mgmt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD.bazel
More file actions
57 lines (55 loc) · 2.1 KB
/
BUILD.bazel
File metadata and controls
57 lines (55 loc) · 2.1 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
load("@io_bazel_rules_go//go:def.bzl", "go_library")
package(
default_visibility = ["//visibility:public"],
licenses = ["notice"],
)
go_library(
name = "testhelper",
testonly = 1,
srcs = [
"augment.go",
"gnmi.go",
"gnoi.go",
"lacp.go",
"p4rt.go",
"testhelper.go",
"platform_components.go",
"platform_info.go",
"port_management.go",
"results.go",
"ssh.go",
"//infrastructure/testhelper/platform_info:platform_info",
],
data = [
"//infrastructure/data",
],
importpath = "github.com/sonic-net/sonic-mgmt/sdn_tests/pins_ondatra/infrastructure/testhelper/testhelper",
deps = [
"@com_github_golang_glog//:glog",
"@com_github_openconfig_goyang//pkg/yang:go_default_library",
"@com_github_openconfig_gnmi//proto/gnmi:gnmi_go_proto",
"@com_github_openconfig_gnoi//healthz:healthz_go_proto",
"@com_github_openconfig_gnoi//system:system_go_proto",
"@com_github_openconfig_gnoi//types:types_go_proto",
"@com_github_openconfig_gocloser//:gocloser",
"@com_github_openconfig_ondatra//:go_default_library",
"@com_github_openconfig_ondatra//gnmi",
"@com_github_openconfig_ondatra//gnmi/oc",
"@com_github_openconfig_ondatra//gnmi/oc/interfaces",
"@com_github_openconfig_ondatra//gnmi/oc/platform",
"@com_github_openconfig_ondatra//gnmi/oc/system",
"@com_github_openconfig_ygnmi//ygnmi",
"@com_github_openconfig_ygot//ygot",
"@com_github_openconfig_ygot//ytypes",
"@com_github_p4lang_golang_p4runtime//go/p4/config/v1:go_default_library",
"@com_github_p4lang_golang_p4runtime//go/p4/v1:p4",
"@com_github_pkg_errors//:errors",
"@com_github_pkg_sftp//:go_default_library",
"@org_golang_google_grpc//:go_default_library",
"@org_golang_google_grpc//codes",
"@org_golang_google_grpc//status",
"@org_golang_google_protobuf//encoding/prototext",
"@org_golang_google_protobuf//proto",
"@org_golang_x_crypto//ssh",
],
)