From bb613c35cb61086e8222a3ef201826c46be83dfe Mon Sep 17 00:00:00 2001 From: Chinmay Garde Date: Thu, 17 Nov 2016 16:28:43 -0800 Subject: [PATCH] Remove unused DEPS hooks. (#3241) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * The lastchange hook wrote a file no one ever read. * We don’t need binutils because we don’t use debug fission on Linux. * We dont use eu-strip. --- DEPS | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/DEPS b/DEPS index be324fccd..0fae9c1ef 100644 --- a/DEPS +++ b/DEPS @@ -181,38 +181,6 @@ hooks = [ 'pattern': '.', 'action': ['python', 'src/tools/dart/update.py'], }, - { - # Update LASTCHANGE. This is also run by export_tarball.py in - # src/tools/export_tarball - please keep them in sync. - 'name': 'lastchange', - 'pattern': '.', - 'action': ['python', 'src/build/util/lastchange.py', - '-o', 'src/build/util/LASTCHANGE'], - }, - # Pull binutils for linux, enabled debug fission for faster linking / - # debugging when used with clang on Ubuntu Precise. - # https://code.google.com/p/chromium/issues/detail?id=352046 - { - 'name': 'binutils', - 'pattern': 'src/third_party/binutils', - 'action': [ - 'python', - 'src/third_party/binutils/download.py', - ], - }, - # Pull eu-strip binaries using checked-in hashes. - { - 'name': 'eu-strip', - 'pattern': '.', - 'action': [ 'download_from_google_storage', - '--no_resume', - '--quiet', - '--platform=linux*', - '--no_auth', - '--bucket', 'chromium-eu-strip', - '-s', 'src/build/linux/bin/eu-strip.sha1', - ], - }, { # Ensure that we don't accidentally reference any .pyc files whose # corresponding .py files have already been deleted. -- GitLab