Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Unified Diff: DEPS

Issue 1100763002: Inject CanAddURLToHistory into TopSitesImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prefs
Patch Set: Fix error introduced during rebase Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « BUILD.gn ('k') | android_webview/java/src/org/chromium/android_webview/AwContents.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: DEPS
diff --git a/DEPS b/DEPS
index 5f965b76e35dde82250b62ca836c35392dec7994..08b5fbac0a3119e40b2e2a4190d1544fbc45e7a4 100644
--- a/DEPS
+++ b/DEPS
@@ -42,12 +42,12 @@ vars = {
'boringssl_git': 'https://boringssl.googlesource.com',
'libvpx_revision': 'c600ca703b712ac0d2db719970a1fce6de70fcb4',
'sfntly_revision': '1bdaae8fc788a5ac8936d68bf24f37d977a13dac',
- 'skia_revision': 'aa31ee78eecef34128aa1eaf0e1bb9398a7caec5',
+ 'skia_revision': '8e71d38126df1ed40ee88107e681c8b62f726e30',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling Skia
# and V8 without interference from each other.
'v8_branch': 'trunk',
- 'v8_revision': '5b5f7c180da5a60fc5406afef691f511c080f554',
+ 'v8_revision': '9432a89321d5600ab05661715614395d6d987c42',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling WebRTC
# and V8 without interference from each other.
@@ -94,7 +94,7 @@ vars = {
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling NaCl
# and whatever else without interference from each other.
- 'nacl_revision': 'efe1c643770e76a1c4747e4c5bf9338e5a0ef945',
+ 'nacl_revision': '87d5dd90911a0657c27574f78e86b7dfc4ad8b29',
}
# Only these hosts are allowed for dependencies in this DEPS file.
@@ -132,7 +132,7 @@ deps = {
Var('chromium_git') + '/crashpad/crashpad.git' + '@' + '1baff4ff92fe1a1ead6b88b5f01633a4f0b6b51c',
'src/third_party/trace-viewer':
- Var('chromium_git') + '/external/trace-viewer.git' + '@' + 'f8f4efb9a374bba07dfb90c732a923884c3747f7',
+ Var('chromium_git') + '/external/trace-viewer.git' + '@' + 'bd416ea61d3632b93796eba2134fe03185e9e63e',
'src/third_party/WebKit':
Var('chromium_git') + '/chromium/blink.git' + '@' + Var('webkit_revision'),
@@ -210,7 +210,7 @@ deps = {
Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '104f872faf2cd809cdada885a1e39be85e5b3316',
'src/third_party/libjingle/source/talk':
- Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + 'c37efc9de4cff7da03ff3fa842bbfe35c5a540b4',
+ Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + 'd8bca77284d02b80de15a5420c727a3e1385c542', # commit position 9081
'src/third_party/usrsctp/usrsctplib':
Var('chromium_git') + '/external/usrsctplib.git' + '@' + '36444a999739e9e408f8f587cb4c3ffeef2e50ac', # from svn revision 9215
@@ -234,7 +234,7 @@ deps = {
Var('chromium_git') + '/native_client/src/third_party/scons-2.0.1.git' + '@' + '1c1550e17fc26355d08627fbdec13d8291227067',
'src/third_party/webrtc':
- Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + '51fb6e464e6aab5711afedc6fb9c3d23f4b92057',
+ Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + '324d9727cd5cc1f2e3434e82cc9f9d83a486abab', # commit position 9084
'src/third_party/openmax_dl':
Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@' + Var('openmax_dl_revision'),
@@ -410,7 +410,7 @@ deps_os = {
# For Linux and Chromium OS.
'src/third_party/cros_system_api':
- Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + 'beb554763c188ae8f0518de6d55661248c907218',
+ Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '42cdfaada2ae9183f6479531e24d739cc778c4a8',
# Note that this is different from Android's freetype repo.
'src/third_party/freetype2/src':
@@ -581,16 +581,14 @@ hooks = [
'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'],
},
{
- # Update LASTCHANGE. This is also run by export_tarball.py in
- # src/tools/export_tarball - please keep them in sync.
+ # Update LASTCHANGE.
'name': 'lastchange',
'pattern': '.',
'action': ['python', 'src/build/util/lastchange.py',
'-o', 'src/build/util/LASTCHANGE'],
},
{
- # Update LASTCHANGE.blink. This is also run by export_tarball.py in
- # src/tools/export_tarball - please keep them in sync.
+ # Update LASTCHANGE.blink.
'name': 'lastchange',
'pattern': '.',
'action': ['python', 'src/build/util/lastchange.py',
« no previous file with comments | « BUILD.gn ('k') | android_webview/java/src/org/chromium/android_webview/AwContents.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698