blob: d548283a2bd72b1c98dead82c9dc6c7beddf9571 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
OWNER(
thegeorg
g:contrib
g:cpp-contrib
)
# This is a part of xz utils package. Source can be downloaded from
# https://tukaani.org/xz/
LIBRARY()
LICENSE(Public-Domain)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
VERSION(5.2.4)
NO_COMPILER_WARNINGS()
NO_UTIL()
CFLAGS(
GLOBAL -DLZMA_API_STATIC
-DHAVE_CONFIG_H
-DTUKLIB_SYMBOL_PREFIX=lzma_
)
PEERDIR(
contrib/libs/xz/common
)
ADDINCL(
GLOBAL contrib/libs/xz/liblzma/api
contrib/libs/xz
contrib/libs/xz/liblzma/check
contrib/libs/xz/liblzma/common
contrib/libs/xz/liblzma/delta
contrib/libs/xz/liblzma/lz
contrib/libs/xz/liblzma/lzma
contrib/libs/xz/liblzma/rangecoder
contrib/libs/xz/liblzma/simple
contrib/libs/xz/common
)
SRCS(
check/check.c
check/crc32_fast.c
check/crc32_table.c
check/crc64_fast.c
check/crc64_table.c
check/sha256.c
common/alone_decoder.c
common/alone_encoder.c
common/auto_decoder.c
common/block_buffer_decoder.c
common/block_buffer_encoder.c
common/block_decoder.c
common/block_encoder.c
common/block_header_decoder.c
common/block_header_encoder.c
common/block_util.c
common/common.c
common/easy_buffer_encoder.c
common/easy_decoder_memusage.c
common/easy_encoder.c
common/easy_encoder_memusage.c
common/easy_preset.c
common/filter_buffer_decoder.c
common/filter_buffer_encoder.c
common/filter_common.c
common/filter_decoder.c
common/filter_encoder.c
common/filter_flags_decoder.c
common/filter_flags_encoder.c
common/hardware_cputhreads.c
common/index.c
common/index_decoder.c
common/index_encoder.c
common/index_hash.c
common/outqueue.c
common/stream_buffer_decoder.c
common/stream_buffer_encoder.c
common/stream_decoder.c
common/stream_encoder.c
common/stream_encoder_mt.c
common/stream_flags_common.c
common/stream_flags_decoder.c
common/stream_flags_encoder.c
common/vli_decoder.c
common/vli_encoder.c
common/vli_size.c
delta/delta_common.c
delta/delta_decoder.c
delta/delta_encoder.c
lz/lz_decoder.c
lz/lz_encoder.c
lz/lz_encoder_mf.c
lzma/fastpos_table.c
lzma/lzma2_decoder.c
lzma/lzma2_encoder.c
lzma/lzma_decoder.c
lzma/lzma_encoder.c
lzma/lzma_encoder_optimum_fast.c
lzma/lzma_encoder_optimum_normal.c
lzma/lzma_encoder_presets.c
rangecoder/price_table.c
simple/arm.c
simple/armthumb.c
simple/ia64.c
simple/powerpc.c
simple/simple_coder.c
simple/simple_decoder.c
simple/simple_encoder.c
simple/sparc.c
simple/x86.c
)
END()
|