aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/style/lib.rs')
-rw-r--r--components/style/lib.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/components/style/lib.rs b/components/style/lib.rs
index 59a936dd737..9469d021196 100644
--- a/components/style/lib.rs
+++ b/components/style/lib.rs
@@ -11,7 +11,6 @@
#![feature(rustc_private)]
#![plugin(string_cache_plugin)]
-#![plugin(mod_path)]
#[macro_use] extern crate log;
#[macro_use] extern crate bitflags;
@@ -44,7 +43,10 @@ pub mod selector_matching;
#[macro_use] pub mod values;
// Generated from the properties.mako.rs template by build.rs
-mod_path! properties (concat!(env!("OUT_DIR"), "/properties.rs"));
+#[macro_use]
+pub mod properties {
+ include!(concat!(env!("OUT_DIR"), "/properties.rs"));
+}
pub mod node;
pub mod media_queries;