summaryrefslogtreecommitdiffstats
path: root/tools/scripts/take_snapshot.py
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2016-06-02 10:47:32 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2016-06-02 14:29:45 +0000
commit5a7063154520544fe19bb57af3609afef898bffb (patch)
tree9c281fc782c697c56557486832eff98d95eda2d2 /tools/scripts/take_snapshot.py
parent4a94a13d54dbaf32e7ac34cdee6e207fe5478286 (diff)
Update Chromium to 51.0.2704.79
Also adds a url_pattern files from extensions. Change-Id: Ief1b7faea488f1e6b5c3688377f630ff1b3e8592 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'tools/scripts/take_snapshot.py')
-rwxr-xr-xtools/scripts/take_snapshot.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/scripts/take_snapshot.py b/tools/scripts/take_snapshot.py
index 7498aee75..e270a9b60 100755
--- a/tools/scripts/take_snapshot.py
+++ b/tools/scripts/take_snapshot.py
@@ -134,8 +134,9 @@ def isInChromiumBlacklist(file_path):
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 and
- not 'browser/notification_types.cc' in file_path and
- not 'browser/notification_types.h' in file_path)
+ not 'browser/notification_types.' in file_path and
+ not 'common/constants.' in file_path and
+ not 'common/url_pattern.' in file_path)
or file_path.startswith('google_update')
or file_path.startswith('ios')
or file_path.startswith('media/base/android/java')