-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make fetch-gn and activate-emsdk optional in git-sync-deps #146
base: main
Are you sure you want to change the base?
Conversation
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
These two scripts is platform-dependent and may fail if there are no prebuilt binaries for an unsupported platform. Making these steps optional makes building on those platforms easier, for they can use their own versions of toolchain (e.g. packages in a Linux distro).
This PR (HEAD: 6969759) has been imported to Gerrit for code review. Please visit review.skia.org/765896 to see it. Please CC yourself to the Gerrit change. Note:
|
De-vendor Skia dependencies by making `SKIA_USE_SYSTEM_LIBRARIES` actually working; to be upstreamed to Arch. Related upstream PRs (for now): - rust-skia/rust-skia#851 - rust-skia/rust-skia#852 - rust-skia/rust-skia#854 - google/skia#146
De-vendor Skia dependencies by making `SKIA_USE_SYSTEM_LIBRARIES` actually working; to be upstreamed to Arch. Related upstream PRs (for now): - rust-skia/rust-skia#851 - rust-skia/rust-skia#852 - rust-skia/rust-skia#854 - google/skia#146
- Remove unneeded depends - Remove ring 0.16 patch as upstream updated to 0.17 - Bump `rust-skia` to self-forked `0.68.0` [1] to catch up upstream [2]. This fix: ``` warning: Patch `SOMETHING` was not used in the crate graph. Check that the patched package version and available features are compatible with the dependency requirements ``` - Backport rust-skia/rust-skia#916 to fix rust-skia/rust-skia#913 - Remaining relevant pr/issue: - google/skia#146 - https://gitlab.archlinux.org/archlinux/packaging/packages/neovide/-/issues/1 [1]: https://github.com/aimixsaka/rust-skia/tree/riscv-skia-bindings-0.68.0 [2]: https://github.com/neovide/neovide/blob/af9869bd6d8d3434b187e29f85032ee74e40b536/Cargo.toml#L59C68-L59C68
- Remove unneeded depends - Remove ring 0.16 patch as upstream updated to 0.17 - Bump `rust-skia` to self-forked `0.68.0` [1] to catch up upstream [2]. This fix: ``` warning: Patch `SOMETHING` was not used in the crate graph. Check that the patched package version and available features are compatible with the dependency requirements ``` - Backport rust-skia/rust-skia#916 to fix rust-skia/rust-skia#913 - Remaining relevant pr/issue: - google/skia#146 - https://gitlab.archlinux.org/archlinux/packaging/packages/neovide/-/issues/1 [1]: https://github.com/aimixsaka/rust-skia/tree/riscv-skia-bindings-0.68.0 [2]: https://github.com/neovide/neovide/blob/af9869bd6d8d3434b187e29f85032ee74e40b536/Cargo.toml#L59C68-L59C68
These two scripts is platform-dependent and may fail if there are no prebuilt binaries for an unsupported platform. Making these steps optional makes building on those platforms easier, for they can use their own versions of toolchain (e.g. packages in a Linux distro).