From e575c01b9de669e59c63db805bca587c56108dad Mon Sep 17 00:00:00 2001 From: kjellander Date: Thu, 25 Aug 2016 04:22:19 -0700 Subject: [PATCH] Remove GYP execution from DEPS hooks (gclient {sync,runhooks}) Due to the recent roll of chromium_revision in DEPS in https://codereview.webrtc.org/2269953002/ an Android checkout now experiences an error when running GYP (which is automatically done as a hook when you run 'gclient {sync,runhooks}'. This CL removes the GYP invocation entirely, as it would soon be removed anyway as part of the GN migration. All our bots are executing GYP/GN as part of the MB step (called 'generate_build_files'), so they won't be affected. BUG=webrtc:5949,webrtc:6258 NOTRY=True Review-Url: https://codereview.webrtc.org/2280633002 Cr-Commit-Position: refs/heads/master@{#13920} --- DEPS | 7 ------- 1 file changed, 7 deletions(-) diff --git a/DEPS b/DEPS index a625217bab..38f0b5a705 100644 --- a/DEPS +++ b/DEPS @@ -83,12 +83,5 @@ hooks = [ '--bucket', 'chromium-webrtc-resources', 'src/resources'], }, - { - # A change to a .gyp, .gypi, or to GYP itself should run the generator. - 'name': 'gyp', - 'pattern': '.', - 'action': ['python', 'src/webrtc/build/gyp_webrtc.py', - Var('extra_gyp_flag')], - }, ]