Auto merge of #29956 - mrobinson:update-mozangle, r=jdm

Update mozangle

This should allow servo to take advantage of faster compilation times on Windows.

<!-- Please describe your changes on the following line: -->

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors

<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
This commit is contained in:
bors-servo 2023-07-02 02:23:26 +02:00 committed by GitHub
commit ed72efa154
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 7 additions and 12 deletions

View file

@ -122,4 +122,4 @@ webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] }
xml5ever = { workspace = true }
[target.'cfg(not(target_os = "ios"))'.dependencies]
mozangle = { version = "0.3", features = ["egl", "build_dlls"] }
mozangle = { workspace = true }

View file

@ -13,7 +13,6 @@ crate-type = ["rlib"]
[features]
debugmozjs = ["script/debugmozjs"]
egl = ["mozangle/egl"]
googlevr = ["webxr/googlevr"]
jitspew = ["script/jitspew"]
js_backtrace = ["script/js_backtrace"]
@ -61,6 +60,7 @@ layout_thread_2013 = { path = "../layout_thread", optional = true }
layout_thread_2020 = { path = "../layout_thread_2020", optional = true }
log = { workspace = true }
media = { path = "../media" }
mozangle = { workspace = true }
msg = { path = "../msg" }
net = { path = "../net" }
net_traits = { path = "../net_traits" }
@ -92,4 +92,4 @@ webxr-api = { git = "https://github.com/servo/webxr" }
gaol = "0.2.1"
[target.'cfg(target_os = "windows")'.dependencies]
mozangle = { version = "0.3", features = ["egl", "build_dlls"] }
mozangle = { workspace = true, features = ["egl", "build_dlls"] }