From 7ac816f65d1213d18a65e735c5a74d427a5f74a1 Mon Sep 17 00:00:00 2001 From: Raphael Kubo da Costa Date: Mon, 20 Apr 2015 16:51:30 +0300 Subject: [PATCH] Move the invocation of the Google Play Services library script earlier. Make it the first hook to be run, so that the invocation happens before the call to gyp_chromium. --- .DEPS.git | 26 +++++++++++++------------- DEPS | 24 ++++++++++++------------ 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/.DEPS.git b/.DEPS.git index f7560ac197ad0..9963ee6d0134b 100644 --- a/.DEPS.git +++ b/.DEPS.git @@ -426,6 +426,18 @@ skip_child_includes = [ ] hooks = [ + # Custom Crosswalk hook. + { + 'action': [ + 'python', + 'src/build/empty_google_play_services_lib.py' + ], + 'pattern': + '.', + 'name': + 'empty_google_play_services_lib' + }, + { 'action': [ @@ -797,17 +809,5 @@ hooks = [ 'src/tools/.*\\.py', 'name': 'remove_stale_pyc_files' -}, - - # Custom Crosswalk hooks. - { - 'action': [ - 'python', - 'src/build/empty_google_play_services_lib.py' - ], - 'pattern': - '.', - 'name': - 'empty_google_play_services_lib' - } +} ] diff --git a/DEPS b/DEPS index f761f2bb15ffc..b59ba29336fce 100644 --- a/DEPS +++ b/DEPS @@ -378,6 +378,18 @@ deps_os = { } hooks = [ + # Custom Crosswalk hook. + { + 'action': [ + 'python', + 'src/build/empty_google_play_services_lib.py' + ], + 'pattern': + '.', + 'name': + 'empty_google_play_services_lib' + }, + { 'action': [ 'python', @@ -723,18 +735,6 @@ hooks = [ 'src/tools/.*\\.py', 'name': 'remove_stale_pyc_files' - }, - - # Custom Crosswalk hooks. - { - 'action': [ - 'python', - 'src/build/empty_google_play_services_lib.py' - ], - 'pattern': - '.', - 'name': - 'empty_google_play_services_lib' } ]