mirror of
https://github.com/Relintai/webm.git
synced 2024-11-12 10:35:04 +01:00
19 lines
275 B
Python
19 lines
275 B
Python
def can_build(env, platform):
|
|
if env["arch"].startswith("rv"):
|
|
return False
|
|
return platform not in ["iphone"]
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"VideoStreamWebm",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|