ya.make 499 B

123456789101112131415161718192021222324252627282930313233343536
  1. GO_LIBRARY()
  2. LICENSE(MIT)
  3. SRCS(
  4. accessors.go
  5. conversions.go
  6. doc.go
  7. map.go
  8. mutations.go
  9. security.go
  10. tests.go
  11. type_specific.go
  12. type_specific_codegen.go
  13. value.go
  14. )
  15. GO_XTEST_SRCS(
  16. accessors_test.go
  17. conversions_test.go
  18. fixture_test.go
  19. map_test.go
  20. mutations_test.go
  21. security_test.go
  22. simple_example_test.go
  23. tests_test.go
  24. type_specific_codegen_test.go
  25. type_specific_test.go
  26. value_test.go
  27. )
  28. END()
  29. RECURSE(
  30. gotest
  31. )