diff options
author | Glenn Watson <gw@intuitionlibrary.com> | 2015-02-02 09:40:24 +1000 |
---|---|---|
committer | Glenn Watson <gw@intuitionlibrary.com> | 2015-02-02 10:38:12 +1000 |
commit | f495884dcbf7814eb55721e5a30ba2ef865cf960 (patch) | |
tree | bfb05f02056e2487bfa999b1ecbebdc660d2c0aa /components/compositing/platform/mod.rs | |
parent | ccdf0bd65e415eff024e034519f733eeded32812 (diff) | |
download | servo-f495884dcbf7814eb55721e5a30ba2ef865cf960.tar.gz servo-f495884dcbf7814eb55721e5a30ba2ef865cf960.zip |
Remove the glfw port (it doesn't compile since last rustup anyway).
Diffstat (limited to 'components/compositing/platform/mod.rs')
-rw-r--r-- | components/compositing/platform/mod.rs | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/components/compositing/platform/mod.rs b/components/compositing/platform/mod.rs deleted file mode 100644 index 5d8a8cba470..00000000000 --- a/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; -} - |