Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upRefactor & cleanup widevine sig file generation process on Windows #7578
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, widevine sig file generation is done separately right after
buildis finished. https://github.com/brave/brave-browser/blob/master/lib/build.js#L113Sig file generation script runs with system python because it was hard to resolve external dependencies(
cryptography) that is not available from chromium packaged python.If we can do this during the
create installerstep during thecreate_dist, it would be much simpler.We can try this by installing additional dependencies to
brave/vendors.