ya.make 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. GO_LIBRARY()
  2. LICENSE(BSD-3-Clause)
  3. VERSION(v1.0.6-0.20201009195203-85dd5c8bc61c)
  4. SRCS(
  5. bool.go
  6. bool_slice.go
  7. bytes.go
  8. count.go
  9. duration.go
  10. duration_slice.go
  11. flag.go
  12. float32.go
  13. float32_slice.go
  14. float64.go
  15. float64_slice.go
  16. golangflag.go
  17. int.go
  18. int16.go
  19. int32.go
  20. int32_slice.go
  21. int64.go
  22. int64_slice.go
  23. int8.go
  24. int_slice.go
  25. ip.go
  26. ip_slice.go
  27. ipmask.go
  28. ipnet.go
  29. ipnet_slice.go
  30. string.go
  31. string_array.go
  32. string_slice.go
  33. string_to_int.go
  34. string_to_int64.go
  35. string_to_string.go
  36. uint.go
  37. uint16.go
  38. uint32.go
  39. uint64.go
  40. uint8.go
  41. uint_slice.go
  42. )
  43. GO_TEST_SRCS(
  44. bool_slice_test.go
  45. bool_test.go
  46. bytes_test.go
  47. count_test.go
  48. duration_slice_test.go
  49. export_test.go
  50. flag_test.go
  51. float32_slice_test.go
  52. float64_slice_test.go
  53. golangflag_test.go
  54. int32_slice_test.go
  55. int64_slice_test.go
  56. int_slice_test.go
  57. ip_slice_test.go
  58. ip_test.go
  59. ipnet_slice_test.go
  60. ipnet_test.go
  61. printusage_test.go
  62. string_array_test.go
  63. string_slice_test.go
  64. string_to_int64_test.go
  65. string_to_int_test.go
  66. string_to_string_test.go
  67. uint_slice_test.go
  68. )
  69. GO_XTEST_SRCS(example_test.go)
  70. END()
  71. RECURSE(
  72. gotest
  73. )