summaryrefslogtreecommitdiffstats
path: root/tools
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
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')
-rwxr-xr-xtools/scripts/take_snapshot.py5
-rw-r--r--tools/scripts/version_resolver.py2
2 files changed, 4 insertions, 3 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')
diff --git a/tools/scripts/version_resolver.py b/tools/scripts/version_resolver.py
index ec4a0388d..e58c647de 100644
--- a/tools/scripts/version_resolver.py
+++ b/tools/scripts/version_resolver.py
@@ -38,7 +38,7 @@ import json
import urllib2
import git_submodule as GitSubmodule
-chromium_version = '51.0.2704.47'
+chromium_version = '51.0.2704.79'
chromium_branch = '2704'
ninja_version = 'v1.6.0'