summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2017-09-12 15:02:39 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2017-09-12 21:33:12 +0000
commit6446152e559b162bd3b69d1dcbb9dc834cc52875 (patch)
tree1e8ad217ec4828416c0c13957423f4f40e661457 /tools
parent1292b3049b8243a442becf1c3c49c0fa48661e9a (diff)
Update 3rdparty
Updates Chromium to 60.0.3112.116 and Ninja to 1.8.2 Change-Id: I46f6fe4083f338890ad85437404a442aa7eeba81 Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/scripts/take_snapshot.py7
-rw-r--r--tools/scripts/version_resolver.py4
2 files changed, 7 insertions, 4 deletions
diff --git a/tools/scripts/take_snapshot.py b/tools/scripts/take_snapshot.py
index 2bd1ac5ed..0b13072dc 100755
--- a/tools/scripts/take_snapshot.py
+++ b/tools/scripts/take_snapshot.py
@@ -71,7 +71,8 @@ def isInChromiumBlacklist(file_path):
not file_path.startswith('net/test/') and
not file_path.endswith('mock_chrome_application_mac.h') and
not file_path.endswith('perftimer.h') and
- not 'ozone' in file_path)
+ not 'ozone' in file_path and
+ not file_path.startswith('extensions/browser/'))
or file_path.endswith('.java')
or file_path.startswith('android_webview')
or file_path.startswith('apps/')
@@ -91,6 +92,8 @@ def isInChromiumBlacklist(file_path):
not 'third_party/chromevox' in file_path and
not 'media/webrtc/desktop_media_list.h' in file_path and
not 'media/webrtc/desktop_streams_registry.' in file_path and
+ not '/browser/devtools/' in file_path and
+ not '/browser/ui/webui/' in file_path and
not 'common/chrome_constants.' in file_path and
not 'common/chrome_paths' in file_path and
not 'common/chrome_switches.' in file_path and
@@ -125,7 +128,7 @@ def isInChromiumBlacklist(file_path):
or file_path.startswith('components/proximity_auth/')
or (file_path.startswith('components/resources/terms/') and not file_path.endswith('terms_chromium.html'))
or file_path.startswith('components/rlz/')
- or file_path.startswith('components/sync/')
+ or file_path.startswith('components/sync/') and not file_path.endswith('ordinal.h')
or file_path.startswith('components/test/')
or file_path.startswith('components/test_runner/')
or file_path.startswith('components/translate/')
diff --git a/tools/scripts/version_resolver.py b/tools/scripts/version_resolver.py
index 96faa5524..f2ff114db 100644
--- a/tools/scripts/version_resolver.py
+++ b/tools/scripts/version_resolver.py
@@ -38,9 +38,9 @@ import json
import urllib2
import git_submodule as GitSubmodule
-chromium_version = '60.0.3112.78'
+chromium_version = '60.0.3112.116'
chromium_branch = '3112'
-ninja_version = 'v1.7.2'
+ninja_version = 'v1.8.2'
json_url = 'http://omahaproxy.appspot.com/all.json'