servoshell/desktop/mod.rs
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4
5//! Contains files specific to the servoshell app for Desktop systems.
6
7mod accelerated_gl_media;
8pub(crate) mod app;
9mod app_state;
10pub(crate) mod cli;
11mod dialog;
12mod egui_glue;
13pub(crate) mod events_loop;
14mod gamepad;
15pub mod geometry;
16mod headed_window;
17mod headless_window;
18mod keyutils;
19mod minibrowser;
20mod protocols;
21mod tracing;
22#[cfg(feature = "webxr")]
23mod webxr;
24mod window_trait;