Skip to content

Instantly share code, notes, and snippets.

@andybe
Last active November 27, 2020 13:25
Show Gist options
  • Save andybe/d72d5ee99a8ba82b054177a928c1fad6 to your computer and use it in GitHub Desktop.
Save andybe/d72d5ee99a8ba82b054177a928c1fad6 to your computer and use it in GitHub Desktop.
chromium test drive on macOS complete (BigSur - Xcode)
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