aboutsummaryrefslogtreecommitdiffstats
path: root/library/go/slices/ya.make
blob: 97a793cfd169d1cc8d6fad2e85c377b07d6f97e9 (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
32
33
34
GO_LIBRARY()

SRCS(
    chunk.go
    contains.go
    contains_all.go
    contains_any.go
    dedup.go
    equal.go
    filter.go
    group_by.go
    intersects.go
    join.go
    map.go
    reverse.go
    shuffle.go
)

GO_XTEST_SRCS(
    chunk_test.go
    dedup_test.go
    equal_test.go
    filter_test.go
    group_by_test.go
    intersects_test.go
    join_test.go
    map_test.go
    reverse_test.go
    shuffle_test.go
)

END()

RECURSE(gotest)