commit | dc987f6714ed2605db3d180f0db6ae8152768668 | [log] [tgz] |
---|---|---|
author | James Robinson <jamesr@chromium.org> | Mon Oct 20 16:49:17 2014 -0700 |
committer | James Robinson <jamesr@chromium.org> | Mon Oct 20 17:03:28 2014 -0700 |
tree | 0da96b149062504b0801bdb74997407bcaa47cbc | |
parent | 24218d7dcae5ed5bb2ab76420509e02f297ab321 [diff] |
Filter out js bindings unit tests This is being developed in the chromium repo so the test targets do not pass in the mojo repo.
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