summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMichael Bruning <michael.bruning@theqtcompany.com>2016-01-15 11:37:47 +0100
committerAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2016-02-01 09:36:53 +0000
commit1910ddb3e2869e50514da343aa6947e88f734c38 (patch)
tree57d83ed4680f11cda66dee738eab750be0196fb0 /tools
parent58ab69474b45deab3f333a00daf18f246f283f20 (diff)
Adjust take snapshot to include chrome printing sources.
Change-Id: I5f6abb62c1f35c544ea8024584cccb1d8c8421da Reviewed-by: Allan Sandfeld Jensen <allan.jensen@theqtcompany.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/scripts/take_snapshot.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/scripts/take_snapshot.py b/tools/scripts/take_snapshot.py
index ea4e358c7..04f53de88 100755
--- a/tools/scripts/take_snapshot.py
+++ b/tools/scripts/take_snapshot.py
@@ -80,8 +80,10 @@ def isInChromiumBlacklist(file_path):
or file_path.startswith('build/android/')
or (file_path.startswith('chrome/') and
not file_path.startswith('chrome/VERSION') and
+ not file_path.startswith('chrome/browser/chrome_notification_types.h') and
not '/app/theme/' in file_path and
not '/app/resources/' in file_path and
+ not '/browser/printing/' in file_path and
not '/browser/resources/' in file_path and
not '/renderer/resources/' in file_path and
not 'repack_locales' in file_path and
@@ -129,7 +131,9 @@ def isInChromiumBlacklist(file_path):
or file_path.startswith('courgette')
or (file_path.startswith('extensions') and
not 'browser/extension_function_registry.h' in file_path and
- not 'browser/extension_function_histogram_value.h' in file_path)
+ not 'browser/extension_function_histogram_value.h' in file_path and
+ not 'browser/notification_types.cc' in file_path and
+ not 'browser/notification_types.h' in file_path)
or file_path.startswith('google_update')
or file_path.startswith('ios')
or file_path.startswith('media/base/android/java')