Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(661)

Unified Diff: build/android/strip_native_libraries.gypi

Issue 13852037: [Android] Add native library to strip inputs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/native_app_dependencies.gypi ('k') | build/java_apk.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)',
« no previous file with comments | « build/android/native_app_dependencies.gypi ('k') | build/java_apk.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698