mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
* servoshell: Move desktop files Move files related to winit into a desktop module. This is a preparation to merge the android and ohos apps into servoshell. * servoshell: Format imports * servoshell: Move panic hook into separate file * servoshell: Move desktop main * Consider ohos as not desktop * servoshell: Adjust dependencies for shared code * servoshell: Remove native-bluetooth from default features There currently is no good way to have target specific default features. * Rename desktop_main.rs to cli.rs * Remove todo
19 lines
509 B
Rust
19 lines
509 B
Rust
/* 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/. */
|
|
|
|
//! Contains files specific to the servoshell app for Desktop systems.
|
|
|
|
pub(crate) mod app;
|
|
pub(crate) mod cli;
|
|
mod egui_glue;
|
|
mod embedder;
|
|
pub(crate) mod events_loop;
|
|
pub mod geometry;
|
|
mod headed_window;
|
|
mod headless_window;
|
|
mod keyutils;
|
|
mod minibrowser;
|
|
mod tracing;
|
|
mod webview;
|
|
mod window_trait;
|