commit | e2ac7e8b68fc01e88f0c062120e8147b0ba6da0a | [log] [tgz] |
---|---|---|
author | James Robinson <jamesr@chromium.org> | Wed Oct 15 13:21:59 2014 -0700 |
committer | James Robinson <jamesr@chromium.org> | Wed Oct 15 13:21:59 2014 -0700 |
tree | 9b3c302146e3b9766cf7c2583513417b0ade23fb | |
parent | d5ac37c9367f06d66e18ef47849e6681d25c7807 [diff] |
Revved to chromium 4dfb55c9cf0950b8bac8b10070c9b8f3e7de66c2 refs/remotes/origin/HEAD
This repo uses gclient to manage dependencies, so to build things from this repo you have to first download depot_tools and make sure it is in your path
http://www.chromium.org/developers/how-tos/install-depot-tools
then create a file called ‘.gclient’ that has the following contents:
solutions = [ { "name" : "src", "url" : "https://github.com/domokit/mojo.git", "deps_file" : "DEPS", "managed" : False, "safesync_url": "", }, ] # Include the following line only if you're interested in building for android. target_os = ['android']
Then run ‘gclient sync’ from the directory containing the .gclient file. This will clone this repository into a subdirectory called ‘src’. From that directory, you can then build by running:
$ gn gen out/Debug $ ninja -C out/Debug mojo