mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 14:52:16 +00:00
34ec41f9b9
This is necessary to export some Angle EGL extensions that are used by the upcoming compositor changes. Differential Revision: https://phabricator.services.mozilla.com/D227277
32 lines
623 B
TOML
32 lines
623 B
TOML
[workspace]
|
|
members = [
|
|
"examples",
|
|
"webrender",
|
|
"webrender_api",
|
|
"wrench",
|
|
"example-compositor/compositor",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
glean = "=61.2.0"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
panic = "abort"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
# optimizing glsl more makes a big difference in swgl build times
|
|
[profile.dev.package.glsl]
|
|
opt-level = 2
|
|
|
|
[profile.release.package.glsl]
|
|
opt-level = 2
|
|
|
|
[patch.crates-io]
|
|
firefox-on-glean = { path = "fog" }
|
|
# use a patched version of glutin that works on android
|
|
glutin = { version = "0.28", git = "https://github.com/jamienicol/glutin", branch="wr" }
|