2018-05-30 19:11:33 +02:00
|
|
|
def can_build(env, platform):
|
2021-08-31 07:27:46 +02:00
|
|
|
if env["arch"].startswith("rv"):
|
|
|
|
return False
|
2024-01-17 15:01:24 +01:00
|
|
|
if platform == "iphone":
|
|
|
|
return False
|
|
|
|
# Can work in theory but our libvpx/SCsub is too broken to compile NEON .s
|
|
|
|
# files properly on Linux arm32. Could be fixed by someone motivated.
|
|
|
|
if platform in ["x11", "server"] and env["arch"] in ["arm", "arm32"]:
|
|
|
|
return False
|
|
|
|
return True
|
2020-03-30 08:28:32 +02:00
|
|
|
|
2016-10-17 17:14:07 +02:00
|
|
|
|
|
|
|
def configure(env):
|
2016-10-30 18:44:57 +01:00
|
|
|
pass
|
2017-11-15 19:23:20 +01:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
|
2017-11-15 19:23:20 +01:00
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
|
|
|
"VideoStreamWebm",
|
|
|
|
]
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
|
2017-11-15 19:23:20 +01:00
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|