aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/containers/comptrie/ya.make
blob: b24b9787c52563e1196584d9fc39b246fda3f7f7 (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
35
LIBRARY()

OWNER(velavokr) 

SRCS(
    array_with_size.h
    chunked_helpers_trie.h
    comptrie.h
    comptrie_packer.h 
    comptrie_trie.h
    first_symbol_iterator.h 
    key_selector.h 
    leaf_skipper.h 
    set.h
    comptrie.cpp
    comptrie_builder.cpp 
    comptrie_impl.cpp
    make_fast_layout.cpp 
    minimize.cpp 
    node.cpp 
    opaque_trie_iterator.cpp 
    prefix_iterator.cpp 
    search_iterator.cpp 
    write_trie_backwards.cpp 
    writeable_node.cpp 
)

PEERDIR(
    library/cpp/packers
    library/cpp/containers/compact_vector
    library/cpp/on_disk/chunks
    util/draft
)

END()