Skip to content
This repository has been archived by the owner on Apr 3, 2020. It is now read-only.

Commit

Permalink
Move the invocation of the Google Play Services library script earlier.
Browse files Browse the repository at this point in the history
Make it the first hook to be run, so that the invocation happens before
the call to gyp_chromium.
  • Loading branch information
Raphael Kubo da Costa committed Apr 30, 2015
1 parent cb440ff commit 7ac816f
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
26 changes: 13 additions & 13 deletions .DEPS.git
Original file line number Diff line number Diff line change
Expand Up @@ -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':
[
Expand Down Expand Up @@ -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'
}
}
]
24 changes: 12 additions & 12 deletions DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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'
}
]

Expand Down

0 comments on commit 7ac816f

Please sign in to comment.