mirror of
https://github.com/servo/servo.git
synced 2025-06-19 22:59:03 +01:00
I'm not sure how we want to handle Linux cursors, and GLFW has no ability to set cursors (short of disabling it and managing it yourself).
76 lines
1.6 KiB
Rust
76 lines
1.6 KiB
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 http://mozilla.org/MPL/2.0/. */
|
|
|
|
#![feature(default_type_params,macro_rules,unsafe_destructor)]
|
|
|
|
#![deny(unused_imports)]
|
|
#![deny(unused_variables)]
|
|
|
|
#![feature(phase)]
|
|
#[phase(plugin, link)]
|
|
extern crate log;
|
|
|
|
extern crate alloc;
|
|
extern crate collections;
|
|
extern crate cssparser;
|
|
extern crate geom;
|
|
extern crate getopts;
|
|
extern crate layers;
|
|
extern crate libc;
|
|
extern crate native;
|
|
extern crate rand;
|
|
extern crate rustrt;
|
|
extern crate serialize;
|
|
extern crate sync;
|
|
#[cfg(target_os="macos")]
|
|
extern crate task_info;
|
|
extern crate "time" as std_time;
|
|
extern crate string_cache;
|
|
extern crate unicode;
|
|
extern crate url;
|
|
|
|
#[phase(plugin)]
|
|
extern crate string_cache_macros;
|
|
#[phase(plugin)]
|
|
extern crate lazy_static;
|
|
|
|
use std::sync::Arc;
|
|
|
|
pub mod bloom;
|
|
pub mod cache;
|
|
pub mod cursor;
|
|
pub mod debug_utils;
|
|
pub mod dlist;
|
|
pub mod fnv;
|
|
pub mod geometry;
|
|
pub mod logical_geometry;
|
|
pub mod memory;
|
|
pub mod namespace;
|
|
pub mod opts;
|
|
pub mod persistent_list;
|
|
pub mod range;
|
|
pub mod resource_files;
|
|
pub mod rtinstrument;
|
|
pub mod smallvec;
|
|
pub mod sort;
|
|
pub mod str;
|
|
pub mod task;
|
|
pub mod tid;
|
|
pub mod time;
|
|
pub mod taskpool;
|
|
pub mod task_state;
|
|
pub mod vec;
|
|
pub mod workqueue;
|
|
|
|
pub fn breakpoint() {
|
|
unsafe { ::std::intrinsics::breakpoint() };
|
|
}
|
|
|
|
// Workaround for lack of `ptr_eq` on Arcs...
|
|
#[inline]
|
|
pub fn arc_ptr_eq<T: 'static + Send + Sync>(a: &Arc<T>, b: &Arc<T>) -> bool {
|
|
let a: &T = a.deref();
|
|
let b: &T = b.deref();
|
|
(a as *const T) == (b as *const T)
|
|
}
|