commit | 828c88737149446d34f499e6e110f5557a1e4ca9 | [log] [tgz] |
---|---|---|
author | Viet-Trung Luu <viettrungluu@chromium.org> | Tue Oct 21 13:30:10 2014 -0700 |
committer | Viet-Trung Luu <viettrungluu@chromium.org> | Tue Oct 21 13:30:10 2014 -0700 |
tree | c1c5c211e03e4034dac3ffb324ca8290eeea810e | |
parent | e27853afdb052c61d25000d83b53eb54e708ea9d [diff] |
Fix some erroneous "(c)"'s in copyright messages. A.k.a. practice commit. R=jamesr@chromium.org Review URL: https://codereview.chromium.org/658283004
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