bin/sync-and-gyp: more dirs to search
Review URL: https://codereview.chromium.org/1914993003
diff --git a/bin/sync-and-gyp b/bin/sync-and-gyp
index 210e30c..a62128d 100755
--- a/bin/sync-and-gyp
+++ b/bin/sync-and-gyp
@@ -128,7 +128,24 @@
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')