diff options
Diffstat (limited to 'components/gfx/lib.rs')
-rw-r--r-- | components/gfx/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/gfx/lib.rs b/components/gfx/lib.rs index c088e7e9b97..8bc6f8c8b4a 100644 --- a/components/gfx/lib.rs +++ b/components/gfx/lib.rs @@ -15,6 +15,7 @@ #![feature(str_char)] #![feature(unique)] +#![plugin(heapsize_plugin)] #![plugin(plugins)] #![plugin(serde_macros)] @@ -45,6 +46,7 @@ extern crate gfx_traits; // shapers. For now, however, this is a hard dependency. extern crate harfbuzz_sys as harfbuzz; +extern crate heapsize; extern crate ipc_channel; extern crate layers; #[macro_use] |