/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ extern crate atomic_refcell; extern crate cssparser; extern crate env_logger; extern crate geckoservo; #[macro_use] extern crate log; extern crate selectors; #[macro_use] extern crate size_of_test; #[macro_use] extern crate style; extern crate style_traits; mod sanity_checks; #[cfg(target_pointer_width = "64")] mod size_of; mod specified_values; mod servo_function_signatures; use style::*; #[allow(dead_code, improper_ctypes)] mod bindings { include!(concat!(env!("OUT_DIR"), "/bindings.rs")); }