Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/bin/bash | |
| 2 set -e | |
| 3 | |
| 4 rm -f .android_config # If no -d flag is given, force the default device (not the last one). | |
| 5 source android_setup.sh | |
| 6 echo $DEVICE_ID > .android_config | |
|
djsollen
2013/09/27 14:07:50
seems like we could refactor android_make so that
mtklein
2013/09/30 15:41:58
Yup. As we talked about before, all that ccache l
| |
| 7 | |
| 8 exportVar GYP_GENERATORS ninja | |
| 9 ./gyp_skia | |
| 10 | |
| 11 OUT=$SKIA_OUT/${BUILDTYPE-Debug} | |
|
djsollen
2013/09/27 14:07:50
The default string value is something I didn't kno
mtklein
2013/09/30 15:41:58
Yeah, it's handy. Done.
| |
| 12 ninja -C $OUT $APP_ARGS | |
| 13 cd $OUT; ln -sf lib lib.target; cd - # android_run_skia looks in lib.target. | |
| 14 | |
| OLD | NEW |