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

Unified Diff: build/android/native_app_dependencies.gypi

Issue 14844009: [Android] Only always trigger stripping with component build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove unwanted line Created 7 years, 7 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 | « no previous file | build/android/strip_native_libraries.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/native_app_dependencies.gypi
diff --git a/build/android/native_app_dependencies.gypi b/build/android/native_app_dependencies.gypi
index fedd89b36f03db65a88d5081b35de0c80c4f5ea2..d9241cc30323e44bb48c817bb293bf274ecb677a 100644
--- a/build/android/native_app_dependencies.gypi
+++ b/build/android/native_app_dependencies.gypi
@@ -25,12 +25,6 @@
#
{
- 'variables': {
- 'intermediate_dir': '<(PRODUCT_DIR)/<(_target_name)',
- 'ordered_libraries_file': '<(intermediate_dir)/native_libraries.json',
- 'stripped_libraries_dir%': '<(output_dir)',
- 'strip_stamp': '<(intermediate_dir)/strip.stamp',
- },
'copies': [
{
'destination': '<(output_dir)',
@@ -43,10 +37,8 @@
'<(DEPTH)/build/android/setup.gyp:copy_system_libraries',
],
'variables': {
- 'intermediate_dir': '<(PRODUCT_DIR)/<(_target_name)',
- 'ordered_libraries_file': '<(intermediate_dir)/native_libraries.json',
- 'stripped_libraries_dir%': '<(output_dir)',
- 'strip_stamp': '<(intermediate_dir)/strip.stamp',
+ 'intermediate_dir': '<(PRODUCT_DIR)/<(_target_name)',
+ 'ordered_libraries_file': '<(intermediate_dir)/native_libraries.json',
},
'actions': [
{
@@ -56,8 +48,11 @@
'includes': ['../../build/android/write_ordered_libraries.gypi'],
},
{
+ 'action_name': 'stripping native libraries',
'variables': {
+ 'stripped_libraries_dir%': '<(output_dir)',
'input_paths': ['<(native_binary)'],
+ 'stamp': '<(intermediate_dir)/strip.stamp',
},
'includes': ['../../build/android/strip_native_libraries.gypi'],
},
« no previous file with comments | « no previous file | build/android/strip_native_libraries.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698