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

Unified Diff: bin/sync-and-gyp

Issue 1153083002: sync-and-gyp: make smarter (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/sync-and-gyp
diff --git a/bin/sync-and-gyp b/bin/sync-and-gyp
index 825f31697e6af1eaad67b9d5a88004c2b298cdb1..eb0311ae10220e6e930d4fee926bb6eb39b6946f 100755
--- a/bin/sync-and-gyp
+++ b/bin/sync-and-gyp
@@ -41,9 +41,12 @@ function catifexists() { if [ -f "$1" ]; then cat "$1"; fi; }
function gyp_hasher() {
{
+ echo "$CC"
+ echo "$CXX"
echo "$GYP_GENERATORS"
echo "$GYP_DEFINES"
find gyp -type f -print -exec git hash-object {} \;
+ find bench gm tests -name '*.c*' | LANG= sort
} | git hash-object --stdin
}
« 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