config.py 551 B

12345678910111213141516171819202122232425
  1. def can_build(env, platform):
  2. if env["arch"].startswith("rv"):
  3. return False
  4. if platform == "iphone":
  5. return False
  6. # Can work in theory but our libvpx/SCsub is too broken to compile NEON .s
  7. # files properly on Linux arm32. Could be fixed by someone motivated.
  8. if platform in ["x11", "server"] and env["arch"] in ["arm", "arm32"]:
  9. return False
  10. return True
  11. def configure(env):
  12. pass
  13. def get_doc_classes():
  14. return [
  15. "VideoStreamWebm",
  16. ]
  17. def get_doc_path():
  18. return "doc_classes"