This reverts commit 90f55ea4580e2a15f7d70d0491444f18b972d450, reversing changes made to 2e60b27a2186a8cba4b952960155dfcf3f47d7db. Doing that per Josh's request, since it's causing very frequent intermittent OOMs on the android builders. Source-Repo: https://github.com/servo/servo Source-Revision: 4d10d39e8fe841c5fe2ac58da2daaa13c10c140e
22 lines
572 B
Rust
22 lines
572 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(unsafe_code)]
|
|
|
|
extern crate azure;
|
|
extern crate canvas_traits;
|
|
extern crate cssparser;
|
|
extern crate euclid;
|
|
extern crate gleam;
|
|
extern crate ipc_channel;
|
|
#[macro_use]
|
|
extern crate log;
|
|
extern crate num_traits;
|
|
extern crate offscreen_gl_context;
|
|
extern crate servo_config;
|
|
extern crate webrender_api;
|
|
|
|
pub mod canvas_paint_thread;
|
|
pub mod webgl_paint_thread;
|