| commit | e1b30cfae1a9784ca08ea264783d7afb2ce45f53 | [log] [tgz] |
|---|---|---|
| author | James Robinson <jamesr@chromium.org> | Tue Oct 21 12:25:40 2014 -0700 |
| committer | James Robinson <jamesr@chromium.org> | Tue Oct 21 12:29:16 2014 -0700 |
| tree | e45fb0425e439b9937a6388ebb32d4065288fcf0 | |
| parent | dc987f6714ed2605db3d180f0db6ae8152768668 [diff] |
Revved to chromium 0e1d34edba6a5d8f7fe43c5b675880a36f4b3861 refs/remotes/origin/HEAD filter gyp out of build/landmines.py filter pepper out of mojo/examples/BUILD.gn filter html_viewer out of mojo/services/BUILD.gn filter js out of mojo/BUILD.gn and mojo/tools/data/unittests filter js/bindings out of mojo/public/BUILD.gn applied patch gpu_media.patch applied patch cc_strip_video.patch applied patch ui_test_support.patch applied patch remove_ipc_deps.patch applied patch ui_compositor.patch applied patch net_sql.patch
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