mirror of
https://github.com/servo/servo.git
synced 2025-07-19 05:13:55 +01:00
serious mode engaged: start of embedding crate using FFI
current status ============= [ ] Successfully crashing CEF [X] Successfully not crashing CEF
This commit is contained in:
parent
4d188e2ccd
commit
faa7f1885c
12 changed files with 504 additions and 14 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue