ya.make 1.2 KB

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