123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- 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()
|