mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 15:23:51 +00:00
8b0ea4a17c
<!-- Please describe your changes on the following line: --> https://bugzilla.mozilla.org/show_bug.cgi?id=1385089 --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors Source-Repo: https://github.com/servo/servo Source-Revision: e07beacd4db4805beb6fd063bf5ccc806f90bf15 --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : 6faa293c2f45ea761850fcfd43689aca92d1c678
24 lines
702 B
Rust
24 lines
702 B
Rust
/* 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/. */
|
|
|
|
#![deny(warnings)]
|
|
|
|
extern crate cssparser;
|
|
extern crate env_logger;
|
|
extern crate libc;
|
|
#[macro_use] extern crate log;
|
|
extern crate selectors;
|
|
extern crate servo_arc;
|
|
#[macro_use] extern crate style;
|
|
extern crate style_traits;
|
|
|
|
mod error_reporter;
|
|
#[allow(non_snake_case)]
|
|
pub mod glue;
|
|
mod stylesheet_loader;
|
|
|
|
// 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 }
|