summaryrefslogtreecommitdiffstats
path: root/build/android/strip_native_libraries.gypi
diff options
context:
space:
mode:
authorcjhopman@chromium.org <cjhopman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-19 20:56:53 +0000
committercjhopman@chromium.org <cjhopman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-19 20:56:53 +0000
commit3da7ac8f632fba6459fa3d19da0767788125942e (patch)
treee6be98a1a1e7f10e48e7ac5b3602cd0f742fba72 /build/android/strip_native_libraries.gypi
parent5310a69a688770403666b11d29676b998972f6ed (diff)
downloadchromium_src-3da7ac8f632fba6459fa3d19da0767788125942e.zip
chromium_src-3da7ac8f632fba6459fa3d19da0767788125942e.tar.gz
chromium_src-3da7ac8f632fba6459fa3d19da0767788125942e.tar.bz2
[Android] Add native library to strip inputs
If the native library changes, we should re-strip/copy it. Add it to the inputs so that we do that. BUG=158821 Review URL: https://chromiumcodereview.appspot.com/13852037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@195274 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/android/strip_native_libraries.gypi')
-rw-r--r--build/android/strip_native_libraries.gypi7
1 files changed, 6 insertions, 1 deletions
diff --git a/build/android/strip_native_libraries.gypi b/build/android/strip_native_libraries.gypi
index bcf282f..d35a5b8 100644
--- a/build/android/strip_native_libraries.gypi
+++ b/build/android/strip_native_libraries.gypi
@@ -10,6 +10,7 @@
# 'actions': [
# 'variables': {
# 'ordered_libraries_file': 'file generated by write_ordered_libraries'
+# 'input_paths': 'files to be added to the list of inputs'
# 'strip_stamp': 'file to touch when the action is complete'
# 'stripped_libraries_dir': 'directory to store stripped libraries',
# },
@@ -21,10 +22,14 @@
{
'action_name': 'strip_native_libraries',
'message': 'Stripping libraries for <(_target_name)',
+ 'variables': {
+ 'input_paths': [],
+ },
'inputs': [
'<(DEPTH)/build/android/gyp/util/build_utils.py',
'<(DEPTH)/build/android/gyp/strip_library_for_device.py',
- '<(ordered_libraries_file)'
+ '<(ordered_libraries_file)',
+ '>@(input_paths)',
],
'outputs': [
'<(strip_stamp)',