commit | 80d418c6c40663ecce0eefb81b790c6af2066a01 | [log] [tgz] |
---|---|---|
author | James Robinson <jamesr@chromium.org> | Thu Oct 16 16:00:02 2014 -0700 |
committer | James Robinson <jamesr@chromium.org> | Thu Oct 16 16:00:02 2014 -0700 |
tree | 913febd085f6b6500b75516345be0122799aa957 | |
parent | 730d7b3d79bb2a354ce4cc42f30dc559a5a297bf [diff] |
Revved to chromium 2a04445358913b81ed786927172647b701b73113 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