Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(646)

Side by Side Diff: platform_tools/android/bin/android_ninja

Issue 24833002: Add android_ninja, like android_make for ninja. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: missing s Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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).
scroggo 2013/09/26 21:23:25 Should all android building behave this way?
mtklein 2013/09/26 21:39:55 Yep, this is only here because android_make does t
5 source android_setup.sh
6 echo $DEVICE_ID > .android_config
7
8 exportVar GYP_GENERATORS ninja
scroggo 2013/09/26 21:23:25 Does this change my gyp generators for building no
mtklein 2013/09/26 21:39:55 Nope. In fact, android_make does the same thing s
9 ./gyp_skia
10
11 OUT=$SKIA_OUT/${BUILDTYPE-Debug}
12 ninja -C $OUT $APP_ARGS
13 cd $OUT; ln -sf lib lib.target; cd - # android_run_skia looks in lib.target.
14
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698