Created
July 7, 2019 08:52
-
-
Save ljsabc/6da99a451879eb6b26309afc95c3b0d4 to your computer and use it in GitHub Desktop.
Windows batch file to build a chromium binary
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd chromium/src | |
call gclient sync | |
call git pull | |
call gclient sync | |
cd D:\chromium\src\chrome\build\ | |
copy chrome.x64.orderfile chrome.arm64.orderfile | |
copy chrome.x64.orderfile.sha1 chrome.arm64.orderfile.sha1 | |
copy chrome_child.x64.orderfile chrome_child.arm64.orderfile | |
copy chrome_child.x64.orderfile.sha1 chrome_child.arm64.orderfile.sha1 | |
cd ../../out/mybuild2 | |
call autoninja mini_installer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment