mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Vendor the current version of WebRender
This is a step toward upgrading WebRender, which will be upgraded and patched in the `third_party` directory. This change vendors the current private branch of WebRender that we use and adds a `patches` directory which tracks the changes on top of the upstream WebRender commit described by third_party/webrender/patches/head.
This commit is contained in:
parent
c19eb800de
commit
49277f5c3f
1215 changed files with 185677 additions and 34 deletions
10
Cargo.toml
10
Cargo.toml
|
@ -78,6 +78,8 @@ unicode-script = "0.5"
|
|||
url = "2.0"
|
||||
uuid = { version = "1.3.4", features = ["v4"] }
|
||||
webdriver = "0.48.0"
|
||||
webrender = { git = "https://github.com/servo/webrender", features = ["capture"] }
|
||||
webrender_api = { git = "https://github.com/servo/webrender" }
|
||||
winapi = "0.3"
|
||||
xi-unicode = "0.1.0"
|
||||
xml5ever = "0.17"
|
||||
|
@ -104,7 +106,9 @@ mio = { git = "https://github.com/servo/mio.git", branch = "servo-mio-0.6.22" }
|
|||
# fork that bumps crates since the original repo is archived.
|
||||
immeta = { git = "https://github.com/fabricedesre/immeta.git" }
|
||||
|
||||
# https://github.com/servo/servo/issues/27515#issuecomment-671474054
|
||||
|
||||
# This is required because we want all dependencies that use WebRender to
|
||||
# use our vendored version.
|
||||
[patch."https://github.com/servo/webrender"]
|
||||
webrender = { git = "https://github.com/jdm/webrender", branch = "crash-backtrace" }
|
||||
webrender_api = { git = "https://github.com/jdm/webrender", branch = "crash-backtrace" }
|
||||
webrender = { path = "third_party/webrender/webrender" }
|
||||
webrender_api = { path = "third_party/webrender/webrender_api" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue