mirror of
https://github.com/servo/servo.git
synced 2025-10-01 00:59:15 +01:00
Implement a geckolib target.
This commit is contained in:
parent
083d3e0201
commit
840df61ba3
6 changed files with 1272 additions and 1 deletions
1207
ports/geckolib/Cargo.lock
generated
Normal file
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
21
ports/geckolib/Cargo.toml
Normal 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
5
ports/geckolib/lib.rs
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue