aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-06-20 12:54:20 -0500
committerGitHub <noreply@github.com>2016-06-20 12:54:20 -0500
commitee8c5c5a67e1181eca163d3cd1189866d230b8f0 (patch)
treed3eccfea7359634f5e01f3cdbe27dc6817d3c143 /components/script/lib.rs
parent33bda9c207001b1f4f0676cbab3222218e94e987 (diff)
parentb56821a01f8ec8f28c37cb46568340ecb145834c (diff)
downloadservo-ee8c5c5a67e1181eca163d3cd1189866d230b8f0.tar.gz
servo-ee8c5c5a67e1181eca163d3cd1189866d230b8f0.zip
Auto merge of #11754 - Ms2ger:wrapper-traits-prep2, r=nox
Move ServoLayoutNode and related structs to script. <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11754) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r--components/script/lib.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs
index 208e48811f6..757c8a28678 100644
--- a/components/script/lib.rs
+++ b/components/script/lib.rs
@@ -65,10 +65,12 @@ extern crate phf;
#[macro_use]
extern crate profile_traits;
extern crate rand;
+extern crate range;
extern crate ref_filter_map;
extern crate ref_slice;
extern crate regex;
extern crate rustc_serialize;
+extern crate script_layout_interface;
extern crate script_traits;
extern crate selectors;
extern crate serde;
@@ -93,12 +95,11 @@ mod devtools;
pub mod document_loader;
#[macro_use]
pub mod dom;
-pub mod layout_interface;
+pub mod layout_wrapper;
mod mem;
mod network_listener;
pub mod origin;
pub mod parse;
-pub mod reporter;
pub mod script_runtime;
#[allow(unsafe_code)]
pub mod script_thread;