-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathBUILD
44 lines (42 loc) · 1.32 KB
/
BUILD
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
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = [
"auth.go",
"conn.go",
"doc.go",
"file.go",
"request.go",
"server.go",
"session.go",
"stack.go",
"walk.go",
"wstat.go",
],
importpath = "aqwari.net/net/styx",
visibility = ["//visibility:public"],
deps = [
"//aqwari.net/net/styx/internal/qidpool:go_default_library",
"//aqwari.net/net/styx/internal/styxfile:go_default_library",
"//aqwari.net/net/styx/internal/sys:go_default_library",
"//aqwari.net/net/styx/internal/threadsafe:go_default_library",
"//aqwari.net/net/styx/internal/tracing:go_default_library",
"//aqwari.net/net/styx/internal/util:go_default_library",
"//aqwari.net/net/styx/styxproto:go_default_library",
"//aqwari.net/retry:go_default_library",
],
)
go_test(
name = "go_default_test",
srcs = [
"example_stack_test.go",
"example_test.go",
"server_test.go",
],
data = ["//aqwari.net/net/styx/styxproto:testdata"],
embed = [":go_default_library"],
deps = [
"//aqwari.net/net/styx/internal/netutil:go_default_library",
"//aqwari.net/net/styx/styxproto:go_default_library",
],
)