mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Basic wrappers and glue for GeckoLib.
This commit is contained in:
parent
77b1027646
commit
84f24a04a4
9 changed files with 693 additions and 11 deletions
|
@ -2,4 +2,28 @@
|
|||
* 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(as_unsafe_cell)]
|
||||
#![feature(box_syntax)]
|
||||
#![feature(ptr_as_ref)]
|
||||
|
||||
extern crate app_units;
|
||||
#[macro_use]
|
||||
extern crate bitflags;
|
||||
extern crate cssparser;
|
||||
extern crate euclid;
|
||||
extern crate libc;
|
||||
extern crate num_cpus;
|
||||
#[macro_use(state_pseudo_classes)]
|
||||
extern crate selectors;
|
||||
extern crate smallvec;
|
||||
#[macro_use(atom, ns)]
|
||||
extern crate string_cache;
|
||||
extern crate style;
|
||||
extern crate url;
|
||||
extern crate util;
|
||||
|
||||
#[allow(dead_code, non_camel_case_types)]
|
||||
mod bindings;
|
||||
#[allow(non_snake_case)]
|
||||
pub mod glue;
|
||||
mod wrapper;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue