ya.make 514 B

1234567891011121314151617181920212223242526272829
  1. LIBRARY()
  2. INCLUDE(${ARCADIA_ROOT}/library/cpp/yt/ya_cpp.make.inc)
  3. PEERDIR(
  4. library/cpp/yt/assert
  5. library/cpp/yt/global
  6. library/cpp/yt/memory
  7. library/cpp/yt/misc
  8. library/cpp/yt/threading
  9. library/cpp/yt/string
  10. library/cpp/yt/logging # TODO(arkady-e1ppa): Consider logging error_code crashes to stderr and drop this dep.
  11. util
  12. )
  13. SRCS(
  14. error.cpp
  15. error_attributes.cpp
  16. error_code.cpp
  17. origin_attributes.cpp
  18. text_yson.cpp
  19. )
  20. END()
  21. RECURSE_FOR_TESTS(
  22. unittests
  23. )