BUCK 433 B

12345678910111213141516171819202122
  1. cxx_library(
  2. name='zlib_wrapper',
  3. visibility=['PUBLIC'],
  4. exported_linker_flags=['-lz'],
  5. header_namespace='',
  6. exported_headers=['zstd_zlibwrapper.h'],
  7. headers=[
  8. 'gzcompatibility.h',
  9. 'gzguts.h',
  10. ],
  11. srcs=glob(['*.c']),
  12. deps=[
  13. '//lib:zstd',
  14. '//lib:zstd_common',
  15. ],
  16. )
  17. cxx_binary(
  18. name='minigzip',
  19. srcs=['examples/minigzip.c'],
  20. deps=[':zlib_wrapper'],
  21. )