ya.make 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. UNITTEST_FOR(library/cpp/monlib/encode/json)
  2. SRCS(
  3. json_decoder_ut.cpp
  4. json_ut.cpp
  5. )
  6. RESOURCE(
  7. buffered_test.json /buffered_test.json
  8. buffered_ts_merge.json /buffered_ts_merge.json
  9. empty_series.json /empty_series.json
  10. expected.json /expected.json
  11. expected_buffered.json /expected_buffered.json
  12. expected_cloud.json /expected_cloud.json
  13. expected_cloud_buffered.json /expected_cloud_buffered.json
  14. merged.json /merged.json
  15. histogram_timeseries.json /histogram_timeseries.json
  16. histogram_value.json /histogram_value.json
  17. histogram_value_inf_before_bounds.json /histogram_value_inf_before_bounds.json
  18. int_gauge.json /int_gauge.json
  19. sensors.json /sensors.json
  20. metrics.json /metrics.json
  21. named_metrics.json /named_metrics.json
  22. test_decode_to_encode.json /test_decode_to_encode.json
  23. crash.json /crash.json
  24. hist_crash.json /hist_crash.json
  25. summary_value.json /summary_value.json
  26. summary_inf.json /summary_inf.json
  27. summary_timeseries.json /summary_timeseries.json
  28. log_histogram_value.json /log_histogram_value.json
  29. log_histogram_timeseries.json /log_histogram_timeseries.json
  30. )
  31. PEERDIR(
  32. library/cpp/json
  33. library/cpp/monlib/consumers
  34. library/cpp/monlib/encode/protobuf
  35. library/cpp/resource
  36. )
  37. END()