Last active
November 27, 2020 13:25
-
-
Save andybe/d72d5ee99a8ba82b054177a928c1fad6 to your computer and use it in GitHub Desktop.
chromium test drive on macOS complete (BigSur - Xcode)
This file contains hidden or 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
mkdir Chromium | |
cd Chromium | |
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git | |
cd depot_tools | |
export PATH=$(pwd):$PATH | |
cd .. | |
git config --global core.precomposeUnicode true | |
mkdir chromium | |
cd chromium | |
fetch --no-history chromium | |
cd src | |
mkdir -p out/release_x86_64 | |
gn gen out/release_x86_64 | |
gn args out/release_x86_64 | |
------------------------------ | |
is_component_build = false | |
is_debug = false | |
symbol_level = 0 | |
ffmpeg_branding="Chrome" | |
proprietary_codecs=true | |
enable_widevine=true | |
------------------------------ | |
autoninja -C out/release_x86_64 chrome |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment