diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-06-16 02:07:57 +0100 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-06-20 19:08:07 +0200 |
commit | 86bfd2cc9f14b95c3b6376c6b723ddf77af3fc35 (patch) | |
tree | 13078c74486575fb7e86e0bb577f1673cefc5f5c /components/script_layout_interface/lib.rs | |
parent | 68d603a6d0a059965d2fa604d153b531cb16d404 (diff) | |
download | servo-86bfd2cc9f14b95c3b6376c6b723ddf77af3fc35.tar.gz servo-86bfd2cc9f14b95c3b6376c6b723ddf77af3fc35.zip |
Move LayoutRPC to script_layout_interface.
Diffstat (limited to 'components/script_layout_interface/lib.rs')
-rw-r--r-- | components/script_layout_interface/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/script_layout_interface/lib.rs b/components/script_layout_interface/lib.rs index d9037311f6a..123792a6c6f 100644 --- a/components/script_layout_interface/lib.rs +++ b/components/script_layout_interface/lib.rs @@ -14,17 +14,20 @@ #![plugin(heapsize_plugin)] #![plugin(plugins)] +extern crate app_units; #[allow(unused_extern_crates)] #[macro_use] extern crate bitflags; extern crate canvas_traits; extern crate core; +extern crate euclid; extern crate gfx_traits; extern crate heapsize; extern crate ipc_channel; extern crate libc; extern crate msg; extern crate range; +extern crate script_traits; extern crate selectors; #[macro_use(atom, ns)] extern crate string_cache; @@ -32,6 +35,7 @@ extern crate style; extern crate url; pub mod restyle_damage; +pub mod rpc; pub mod wrapper_traits; use canvas_traits::CanvasMsg; |