summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
m---------src/3rdparty0
-rwxr-xr-xtools/scripts/take_snapshot.py5
-rw-r--r--tools/scripts/version_resolver.py2
3 files changed, 4 insertions, 3 deletions
diff --git a/src/3rdparty b/src/3rdparty
-Subproject a0dc386e031009d113e6240e75aeaf3ba1852b5
+Subproject bb91a70e24ac49fd21c1d7c8c91a216961da1e2
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'