blob: 9b67ee76178d6d90e477e1b766d1f9f0b2e54e87 (
plain) (
blame)
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
|
GO_LIBRARY()
SUBSCRIBER(g:go-contrib)
LICENSE(MIT)
VERSION(v0.2.0)
# Those tests do open ../fixtures, so we have to mess up with cwd a bit
DATA(
arcadia/vendor/github.com/pseudomuto/protokit/
)
TEST_CWD(vendor/github.com/pseudomuto/protokit/fixtures)
SRCS(
protobuf.go
strings.go
)
GO_XTEST_SRCS(
# protobuf_test.go
strings_test.go
)
END()
RECURSE(
gotest
)
|