mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 15:52:07 +00:00
743324c2d2
Differential Revision: https://phabricator.services.mozilla.com/D44933 --HG-- extra : moz-landing-system : lando
72 lines
1.1 KiB
TOML
72 lines
1.1 KiB
TOML
[package]
|
|
name = "webrender-examples"
|
|
version = "0.1.0"
|
|
authors = ["Glenn Watson <gw@intuitionlibrary.com>"]
|
|
license = "MPL-2.0"
|
|
repository = "https://github.com/servo/webrender"
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "alpha_perf"
|
|
path = "alpha_perf.rs"
|
|
|
|
[[bin]]
|
|
name = "animation"
|
|
path = "animation.rs"
|
|
|
|
[[bin]]
|
|
name = "basic"
|
|
path = "basic.rs"
|
|
|
|
[[bin]]
|
|
name = "blob"
|
|
path = "blob.rs"
|
|
|
|
[[bin]]
|
|
name = "document"
|
|
path = "document.rs"
|
|
|
|
[[bin]]
|
|
name = "frame_output"
|
|
path = "frame_output.rs"
|
|
|
|
[[bin]]
|
|
name = "iframe"
|
|
path = "iframe.rs"
|
|
|
|
[[bin]]
|
|
name = "image_resize"
|
|
path = "image_resize.rs"
|
|
|
|
[[bin]]
|
|
name = "multiwindow"
|
|
path = "multiwindow.rs"
|
|
|
|
[[bin]]
|
|
name = "scrolling"
|
|
path = "scrolling.rs"
|
|
|
|
[[bin]]
|
|
name = "texture_cache_stress"
|
|
path = "texture_cache_stress.rs"
|
|
|
|
[[bin]]
|
|
name = "yuv"
|
|
path = "yuv.rs"
|
|
|
|
[features]
|
|
debug = ["webrender/capture", "webrender/debugger", "webrender/profiler"]
|
|
|
|
[dependencies]
|
|
app_units = "0.7"
|
|
env_logger = "0.5"
|
|
euclid = "0.20"
|
|
gleam = "0.6.2"
|
|
glutin = "0.21"
|
|
rayon = "1"
|
|
webrender = { path = "../webrender" }
|
|
winit = "0.19"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation = "0.6.4"
|