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

Unified Diff: bin/sync-and-gyp

Issue 1914993003: bin/sync-and-gyp: more dirs to search (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 8 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 210e30c212f6f6df6ff35c27e7087bf5588c35e0..a62128d3b1860fa036e4b8c177c3f06db289722b 100755
--- a/bin/sync-and-gyp
+++ b/bin/sync-and-gyp
@@ -128,7 +128,24 @@ for filename in sorted(listfiles('gyp', '*')):
with open(filename, 'r') as f:
hasher.update(f.read())
-for dir in ['bench', 'gm', 'tests']:
+find_dirs = [
+ 'bench',
+ 'fuzz',
+ 'gm',
+ 'tests',
+ 'third_party/externals/icu/source/common',
+ 'third_party/externals/nanomsg/src',
+ 'third_party/externals/sfntly/sfntly',
+ 'third_party/externals/shaderc2',
+ 'tools/VisualBench',
+ 'tools/gpu',
+ 'tools/kilobench',
+ 'tools/skiaserve',
+ 'tools/skiaserve/urlhandlers',
+ 'tools/vulkan',
+]
+
+for dir in find_dirs:
for filename in sorted(listfiles(dir, '*.c*')):
hasher.update(filename + '\n')
« 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