| commit | 527464bf2ca40875e5b22016b1ee2622b671fd22 | [log] [tgz] |
|---|---|---|
| author | James Robinson <jamesr@chromium.org> | Thu Oct 16 16:00:08 2014 -0700 |
| committer | James Robinson <jamesr@chromium.org> | Thu Oct 16 16:00:08 2014 -0700 |
| tree | d93b657b79c4326ce2b12a6a33f45241cd0f1baa | |
| parent | 472b808d0400c7b0179c986aac6c0c7da596df5a [diff] |
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