| Index: build/android/strip_native_libraries.gypi
|
| diff --git a/build/android/strip_native_libraries.gypi b/build/android/strip_native_libraries.gypi
|
| index bcf282f9e102f3afcf1ef4bcfecb67a778382bb5..d35a5b887ec4bcc86657a188e5d5600a72fea768 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)',
|
|
|