aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/compositing/platform/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/compositing/platform/mod.rs')
-rw-r--r--src/components/compositing/platform/mod.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/components/compositing/platform/mod.rs b/src/components/compositing/platform/mod.rs
deleted file mode 100644
index 5d8a8cba470..00000000000
--- a/src/components/compositing/platform/mod.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-/* 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 http://mozilla.org/MPL/2.0/. */
-
-//! Platform-specific functionality for Servo.
-
-#[cfg(target_os="android")]
-pub use platform::common::glut_windowing::{Application, Window};
-#[cfg(not(target_os="android"))]
-pub use platform::common::glfw_windowing::{Application, Window};
-
-pub mod common {
- #[cfg(target_os="android")]
- pub mod glut_windowing;
- #[cfg(not(target_os="android"))]
- pub mod glfw_windowing;
-}
-