mirror of
https://github.com/servo/servo.git
synced 2025-10-11 14:00:28 +01:00
The tests are designed for this, and trying to accommodate 32-bit platforms is difficult. Size concerns due to element packing and holes are less of a problem on 32-bit platforms in any event.
27 lines
713 B
Rust
27 lines
713 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/. */
|
|
|
|
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"));
|
|
}
|