2016-01-10 04:44:17 +03:00
|
|
|
/* 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/. */
|
|
|
|
|
2016-10-11 14:17:44 +03:00
|
|
|
#![deny(warnings)]
|
2016-09-26 10:36:05 +03:00
|
|
|
|
|
|
|
#[macro_use]extern crate style;
|
2016-01-19 11:49:10 +03:00
|
|
|
extern crate app_units;
|
2016-10-09 16:53:28 +03:00
|
|
|
extern crate cssparser;
|
2016-05-05 04:37:26 +03:00
|
|
|
extern crate env_logger;
|
2016-01-19 11:49:10 +03:00
|
|
|
extern crate euclid;
|
|
|
|
extern crate libc;
|
2016-08-09 20:02:55 +03:00
|
|
|
#[macro_use] extern crate log;
|
2016-10-04 19:58:56 +03:00
|
|
|
extern crate parking_lot;
|
2016-11-25 20:00:44 +03:00
|
|
|
extern crate selectors;
|
2016-11-18 00:34:47 +03:00
|
|
|
extern crate servo_url;
|
2016-11-07 08:26:08 +03:00
|
|
|
extern crate style_traits;
|
2016-01-19 11:49:10 +03:00
|
|
|
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
pub mod glue;
|
2016-12-16 20:43:19 +03:00
|
|
|
mod stylesheet_loader;
|
2016-03-25 00:57:33 +03:00
|
|
|
|
2016-07-06 04:55:36 +03:00
|
|
|
// FIXME(bholley): This should probably go away once we harmonize the allocators.
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn je_malloc_usable_size(_: *const ::libc::c_void) -> ::libc::size_t { 0 }
|