I am trying to build chromium with minimal features using Fedora 23 64bit.
I followed the link from cef website did the below steps.
installed depot_tools package
mkdir chromium cd chromium fetch --no-history --no-hooks chromium cd src gclient runhooks gn gen out/Default ninja -C out/Default chrome
Build success
Now, When I tried launching the chrome (out/Default/chrome) I get the below error:
LaunchProcess: failed to execvp:
Also, I don't see libcef.so anywhere in my src folder.
Please help and guide to get a mimimal version built and running.
Before "
gn gen out/Default" you need to execute these commands to get release build:gn args out/Default, andis_debug = false" in an opened editorAfter build you can then run "
cd out/Default && ninja mini_installer" to get an installer and archive ofredistributablefiles.