summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2016-08-01 16:19:34 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2016-09-14 08:15:39 +0000
commitf1e2b2d80366b43ba638290bca55272b000b3ce1 (patch)
tree9b3d4708f0cd80a1c73aeacdbf3b5640c7fa80ab /tools
parentbaaab31631dcff6075418c95f0220e8fb207dd50 (diff)
Adaptations to Chromium 53
Change-Id: I15053486edfd42ee607250b4f14fb6eaa325c959 Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/scripts/take_snapshot.py3
-rw-r--r--tools/scripts/version_resolver.py4
2 files changed, 5 insertions, 2 deletions
diff --git a/tools/scripts/take_snapshot.py b/tools/scripts/take_snapshot.py
index 0644774f8..98b5fc150 100755
--- a/tools/scripts/take_snapshot.py
+++ b/tools/scripts/take_snapshot.py
@@ -94,6 +94,9 @@ def isInChromiumBlacklist(file_path):
not 'common/chrome_switches.' in file_path and
not 'common/content_restriction.h' in file_path and
not 'common/spellcheck_' in file_path and
+ not '/extensions/api/' in file_path and
+ not '/extensions/browser/api/' in file_path and
+ not '/extensions/permissions/' in file_path and
not '/renderer_host/pepper/' in file_path and
not '/renderer/pepper/' in file_path and
not '/spellchecker/' in file_path and
diff --git a/tools/scripts/version_resolver.py b/tools/scripts/version_resolver.py
index 25a57e893..36d784d3a 100644
--- a/tools/scripts/version_resolver.py
+++ b/tools/scripts/version_resolver.py
@@ -38,8 +38,8 @@ import json
import urllib2
import git_submodule as GitSubmodule
-chromium_version = '52.0.2743.76'
-chromium_branch = '2743'
+chromium_version = '53.0.2785.41'
+chromium_branch = '2785'
ninja_version = 'v1.7.1'
json_url = 'http://omahaproxy.appspot.com/all.json'