Skip to content

Instantly share code, notes, and snippets.

@tmiz
Created December 21, 2012 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tmiz/4353968 to your computer and use it in GitHub Desktop.
Save tmiz/4353968 to your computer and use it in GitHub Desktop.
How to build the specified revision of Chromium.
At first, install xcode.
And execute following commands.
XXXXXX is revision number.
$ svn co http://src.chromium.org/svn/trunk/tools/depot_tools
$ export PATH=$PATH:`pwd`/depot_tools
$ gclient config http://src.chromium.org/svn/trunk/src
$ gclient sync --revision src@XXXXXX
$ cd src/
$ GYP_GENERATORS=make GYP_DEFINES=mac_sdk=10.7 ./build/gyp_chromium
$ make chrome -j4
$ open out/Debug/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment