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;
9pub(crate) mod cli;
10pub(crate) mod dialog;
11pub(crate) mod event_loop;
12pub(crate) mod gamepad;
13pub mod geometry;
14mod gui;
15mod headed_window;
16mod headless_window;
17mod keyutils;
18mod protocols;
19mod tracing;
20#[cfg(feature = "webxr")]
21mod webxr;