ya.make 890 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. GO_LIBRARY()
  2. LICENSE(MIT)
  3. SRCS(
  4. array.go
  5. config.go
  6. doc.go
  7. encoder.go
  8. error.go
  9. field.go
  10. flag.go
  11. global.go
  12. http_handler.go
  13. level.go
  14. logger.go
  15. options.go
  16. sink.go
  17. sugar.go
  18. time.go
  19. writer.go
  20. )
  21. GO_TEST_SRCS(
  22. array_test.go
  23. clock_test.go
  24. common_test.go
  25. config_test.go
  26. encoder_test.go
  27. error_test.go
  28. field_test.go
  29. flag_test.go
  30. global_test.go
  31. increase_level_test.go
  32. leak_test.go
  33. level_test.go
  34. logger_bench_test.go
  35. logger_test.go
  36. sink_test.go
  37. sugar_test.go
  38. time_test.go
  39. writer_test.go
  40. )
  41. GO_XTEST_SRCS(
  42. example_test.go
  43. http_handler_test.go
  44. # stacktrace_ext_test.go
  45. )
  46. IF (OS_WINDOWS)
  47. GO_TEST_SRCS(sink_windows_test.go)
  48. ENDIF()
  49. END()
  50. RECURSE(
  51. # benchmarks
  52. buffer
  53. gotest
  54. internal
  55. zapcore
  56. zapgrpc
  57. zapio
  58. zaptest
  59. )