commit | 6dd61fa273a450bc17b3624eceddf04bd600c3b6 | [log] [tgz] |
---|---|---|
author | Viet-Trung Luu <viettrungluu@chromium.org> | Wed Nov 12 13:40:01 2014 -0800 |
committer | Viet-Trung Luu <viettrungluu@chromium.org> | Wed Nov 12 13:40:01 2014 -0800 |
tree | ef540989424f263707d0b344123302987b937e84 | |
parent | 2287b25563d17a8c62c8bdf8d2bf52c39d46b7b9 [diff] |
Re-run clang-format on mojo/edk/{embedder,system,test}. Our "standard" format changed. This avoids distracting format changes in future CLs (at the cost of a "one"-time mega-churn). TBR=yzshen@chromium.org Review URL: https://codereview.chromium.org/724493002
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 directory somewhere for your checkout, cd into it, and run the following commands:
$ fetch mojo # use --target_os=android if you want an Android build. $ cd src $ ./build/install-build-deps.sh
This creates a directory called ‘src’ under your checkout directory, clones the repository and its dependencies, and installs any packages needed to build.
You can then build Mojo by running:
$ gn gen out/Debug $ ninja -C out/Debug root
If you're a Googler and want to use Goma:
$ gn args out/Debug
and add
use_goma = true
Assuming Goma is installed in the default location (~/goma).
Run a demo:
mojo/tools/mojo_demo.sh --browser
Run the tests:
mojo/tools/mojob.py test
To land a patch:
$ git cl land
Don't break build! Waterfall is here: http://build.chromium.org/p/client.mojo/waterfall .