commit | aea4206562d2e26b28ce73770edbc1ee6f36198b | [log] [tgz] |
---|---|---|
author | Nicolas Lacasse <nlacasse@google.com> | Wed Jul 29 13:44:19 2015 -0700 |
committer | Nicolas Lacasse <nlacasse@google.com> | Wed Jul 29 13:44:21 2015 -0700 |
tree | 3ce2a3692f3e44bfe5d726705572c1cdf68df6e1 |
Add README with instructions for building mojo and prereqs. Change-Id: I4c67cce6972398845693d7c442f9e05228ef046a
This project exposes Syncbase as a Mojo service.
Read the architecture proposal.
You must have the Mojo repo in $MOJO_DIR.
This section only needs to be run once.
See the mojo readme for more comprehensive instructions.
Install depot tools.
Install Goma.
Put the following in your .bashrc:
export PATH=${PATH}:${HOME}/dev/depot_tools export GOMA_DIR=${HOME}/goma
export MOJO_DIR=${HOME}/mojo
$ mkdir $MOJO_DIR && cd $MOJO_DIR # NOTE: This step takes about 10 min. $ fetch mojo --target_os=android,linux # NOTE: This step also takes about 10 min. Furthermore, the script uses # 'sudo', so you will need to enter your password. $ cd src && ./build/install-build-deps-android.sh
This updates the Mojo repo to HEAD, and builds the Mojo resources needed to compile Ether.
Run this while you grab your morning coffee.
Start by updating the repo.
$ cd $MOJO_DIR/src $ git checkout master $ git pull $ gclient sync
Compile for Linux. Built resources will be in $MOJO_DIR/src/out/Debug
$ ./mojo/tools/mojob.py gn $ ./mojo/tools/mojob.py build # NOTE: This can take up to 10 minutes.
Compile for Android. Built resources will be in $MOJO_DIR/src/out/android_Debug
$ ./mojo/tools/mojob.py gn --android $ ./mojo/tools/mojob.py build --android # NOTE: This can take up to 10 minutes.