ya.make 372 B

123456789101112131415161718192021
  1. LIBRARY()
  2. # Deprecated writer of Solomon JSON format
  3. # https://wiki.yandex-team.ru/solomon/api/dataformat/json
  4. #
  5. # This writer will be deleted soon, so please consider to use
  6. # high level library library/cpp/monlib/encode which is decoupled from the
  7. # particular format.
  8. SRCS(
  9. writer.h
  10. writer.cpp
  11. )
  12. PEERDIR(
  13. library/cpp/json
  14. )
  15. END()
  16. RECURSE_FOR_TESTS(ut)