Created
December 21, 2012 16:49
-
-
Save tmiz/4353968 to your computer and use it in GitHub Desktop.
How to build the specified revision of Chromium.
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
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