aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/brotli/enc/ya.make
blob: 6d415989e7fec73f3e308df59c71d495ab620ddc (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
36
37
38
39
40
41
42
43
44
45
46
47
LIBRARY() 
 
LICENSE(MIT) 

LICENSE_TEXTS(.yandex_meta/licenses.list.txt)

OWNER(
    pg
    g:contrib
    g:cpp-contrib
)
 
NO_UTIL() 

NO_COMPILER_WARNINGS() 
 
ADDINCL(GLOBAL contrib/libs/brotli/include)

PEERDIR( 
    contrib/libs/brotli/common
    contrib/libs/brotli/dec 
) 
 
SRCS( 
    backward_references.c
    backward_references_hq.c
    bit_cost.c
    block_splitter.c
    brotli_bit_stream.c
    cluster.c
    compress_fragment.c
    compress_fragment_two_pass.c
    dictionary_hash.c
    encode.c
    encoder_dict.c
    entropy_encode.c
    histogram.c
    literal_cost.c
    memory.c
    metablock.c
    static_dict.c
    utf8_util.c
) 
 
CFLAGS(-DBROTLI_BUILD_PORTABLE)

END()