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

Unified Diff: content/content_shell.gypi

Issue 10254028: Add native debugging support to android content shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: satish feedback Created 8 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 | « build/android/gdb_content_shell ('k') | content/shell/android/content_shell_apk.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/content_shell.gypi
diff --git a/content/content_shell.gypi b/content/content_shell.gypi
index 9501ff7a18f58844eb45352c18571874d29c5654..a33508b2997a44ec35a814d7cc37bf810ad205ae 100644
--- a/content/content_shell.gypi
+++ b/content/content_shell.gypi
@@ -534,10 +534,16 @@
'action': ['cp', '<@(_inputs)', '<@(_outputs)'],
},
{
- 'action_name': 'copy_content_shell_content_view',
+ 'action_name': 'copy_and_strip_so',
'inputs': ['<(SHARED_LIB_DIR)/libcontent_shell_content_view.so'],
'outputs': ['<(PRODUCT_DIR)/content_shell/libs/armeabi/libcontent_shell_content_view.so'],
- 'action': ['cp', '<@(_inputs)', '<@(_outputs)'],
+ 'action': [
+ '<!(/bin/echo -n $STRIP)',
+ '--strip-unneeded', # All symbols not needed for relocation.
+ '<@(_inputs)',
+ '-o',
+ '<@(_outputs)'
+ ],
},
{
'action_name': 'content_shell_apk',
« no previous file with comments | « build/android/gdb_content_shell ('k') | content/shell/android/content_shell_apk.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698