commit | 153dd219f81c335977f585fca933f1a59e3f81e3 | [log] [tgz] |
---|---|---|
author | Viet-Trung Luu <viettrungluu@chromium.org> | Tue Oct 21 14:41:15 2014 -0700 |
committer | Viet-Trung Luu <viettrungluu@chromium.org> | Tue Oct 21 14:41:15 2014 -0700 |
tree | 511a2157c0fb65d0de324ed42600923ae781324a | |
parent | 86cb1c7e2765e9bdf9c11c2cb7d161e2cf4010f8 [diff] |
Some more virtual/override updates. (These are mostly fixes to things that derive from testing::Test, which are missed for some reason.) R=sky@chromium.org Review URL: https://codereview.chromium.org/644963004
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 ensure you have all the dependencies installed by running:
$ ./build/install-build-deps.sh
You can then build by running:
$ gn gen out/Debug $ ninja -C out/Debug mojo