/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/media/backends/auto/lib.rs
29 строк
760 B
Martin Robinson
deps: Merge the servo/media repository (#42369)
06 фев 2026, 20:00
Не верифицирован
06 фев 2026, 20:00
eeb31a3
Код
Авторство
О чём код?
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ #[cfg(any( all( target_os = "android", any(target_arch = "arm", target_arch = "aarch64") ), target_arch = "x86_64", target_arch = "aarch64", ))] mod platform { pub use servo_media_gstreamer::GStreamerBackend as Backend; } #[cfg(not(any( all( target_os = "android", any(target_arch = "arm", target_arch = "aarch64") ), target_arch = "x86_64", target_arch = "aarch64", )))] mod platform { pub use servo_media_dummy::DummyBackend as Backend; } pub type Backend = platform::Backend;