ya.make 1.3 KB

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