Implement a geckolib target.

This commit is contained in:
Bobby Holley 2016-01-08 10:48:11 -08:00
parent 083d3e0201
commit 840df61ba3
6 changed files with 1272 additions and 1 deletions

1207
ports/geckolib/Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

21
ports/geckolib/Cargo.toml Normal file
View file

@ -0,0 +1,21 @@
[package]
name = "geckoservo"
version = "0.0.1"
authors = ["The Servo Project Developers"]
[lib]
name = "geckoservo"
path = "lib.rs"
crate-type = ["staticlib"]
[dependencies]
log = "0.3"
url = "0.5.2"
libc = "0.2"
euclid = {version = "0.4", features = ["plugins"]}
[dependencies.util]
path = "../../components/util"
[dependencies.style]
path = "../../components/style"

5
ports/geckolib/lib.rs Normal file
View file

@ -0,0 +1,5 @@
/* 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 style;