summaryrefslogtreecommitdiffstats
path: root/tools/scripts/take_snapshot.py
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2019-05-09 17:04:10 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-07-10 10:26:29 +0200
commit0a01998411de6a46af8d0b0ae13b8f401cd14a4b (patch)
tree7c27c908723628b70b21bfb52428c72acf050a71 /tools/scripts/take_snapshot.py
parent3c34f95ad4a96737f66ab4933edb9e00abecdc24 (diff)
Adaptations for Chromium 74
Change-Id: Icdefa05eec39c632328dfc40862e5b734170bf3f Reviewed-by: Peter Varga <pvarga@inf.u-szeged.hu>
Diffstat (limited to 'tools/scripts/take_snapshot.py')
-rwxr-xr-xtools/scripts/take_snapshot.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/scripts/take_snapshot.py b/tools/scripts/take_snapshot.py
index c6de5977d..982cab622 100755
--- a/tools/scripts/take_snapshot.py
+++ b/tools/scripts/take_snapshot.py
@@ -175,6 +175,7 @@ def isInChromiumBlacklist(file_path):
or file_path.startswith('third_party/fuschsia-sdk/')
or file_path.startswith('third_party/glslang/src/Test/')
or file_path.startswith('third_party/google_')
+ or file_path.startswith('third_party/grpc/')
or file_path.startswith('third_party/hunspell_dictionaries')
or (file_path.startswith('third_party/icu') and file_path.endswith('icudtl_dat.S'))
or file_path.startswith('third_party/icu/android')
@@ -243,6 +244,7 @@ def isInChromiumBlacklist(file_path):
not file_path.endswith('mock_chrome_application_mac.h') and
not file_path.endswith('perftimer.h') and
not file_path.endswith('test-torque.tq') and
+ not file_path.endswith('fonts.conf') and
not 'ozone' in file_path and
not 'clang_coverage' in file_path and
not 'crypto/test/trampoline' in file_path and