Bug 1557368 [wpt PR 16856] - Update error type test for attachInternals(), a=testonly
[gecko.git] / gfx / webrender_bindings / src / lib.rs
blob7595badfe3883eabb235d895fbcaff1caef60221
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 #![deny(warnings)]
7 extern crate webrender;
8 extern crate euclid;
9 extern crate app_units;
10 extern crate gleam;
11 extern crate nsstring;
12 extern crate rayon;
13 extern crate num_cpus;
14 extern crate thread_profiler;
15 extern crate bincode;
16 extern crate uuid;
17 extern crate fxhash;
19 #[macro_use]
20 extern crate log;
22 #[cfg(target_os = "windows")]
23 extern crate dwrote;
26 #[cfg(target_os = "macos")]
27 extern crate core_foundation;
28 #[cfg(target_os = "macos")]
29 extern crate core_graphics;
30 #[cfg(target_os = "macos")]
31 extern crate foreign_types;
33 mod program_cache;
35 #[allow(non_snake_case)]
36 pub mod bindings;
37 pub mod moz2d_renderer;