serious mode engaged: start of embedding crate using FFI

current status

=============

[ ] Successfully crashing CEF

[X] Successfully not crashing CEF
This commit is contained in:
Mike Blumenkrantz 2014-02-18 09:44:25 -05:00
parent 4d188e2ccd
commit faa7f1885c
12 changed files with 504 additions and 14 deletions

View file

@ -16,7 +16,6 @@ extern crate rustuv;
extern crate servo_macros = "macros";
extern crate servo;
extern crate alert;
extern crate azure;
extern crate geom;
extern crate gfx;
@ -47,4 +46,15 @@ extern crate core_graphics;
#[cfg(target_os="macos")]
extern crate core_text;
pub mod browser;
pub mod command_line;
pub mod core;
pub mod eutil;
#[cfg(target_os="linux")] #[cfg(target_os="macos")]
pub mod mem;
pub mod request;
pub mod string;
pub mod task;
pub mod types;
pub mod urlrequest;