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

Unified Diff: bin/c

Issue 1416833004: Make bin/c and bin/compare work on Windows. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | bin/compare » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/c
diff --git a/bin/c b/bin/c
index 6e3bd6e1853e604cc1e32dfbd5aa05037cca09da..fca46d40f6ab0693401e4b33295ddc1e36359da6 100755
--- a/bin/c
+++ b/bin/c
@@ -13,14 +13,14 @@ fi
if [ ! -f $CLEAN.log ]; then
git checkout $CLEAN
- ./gyp_skia >/dev/null
+ python gyp_skia >/dev/null
ninja -C out/Release nanobench
out/Release/nanobench $@ --samples $SAMPLES -v 2> $CLEAN.log
fi
git checkout $BRANCH
-./gyp_skia >/dev/null
+python gyp_skia >/dev/null
ninja -C out/Release nanobench
out/Release/nanobench $@ --samples $SAMPLES -v 2> $BRANCH.log
-./bin/compare $CLEAN.log $BRANCH.log
+python bin/compare $CLEAN.log $BRANCH.log
« no previous file with comments | « no previous file | bin/compare » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698