summaryrefslogtreecommitdiffstats
path: root/content/content_shell.gypi
diff options
context:
space:
mode:
authorshouqun.liu@intel.com <shouqun.liu@intel.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-16 06:18:41 +0000
committershouqun.liu@intel.com <shouqun.liu@intel.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-16 06:18:41 +0000
commitde5b7a4a1fdb5f5b84b86c86e4aa65bed0e7d8d1 (patch)
tree1d9387afcf3b95821e5e2071d964939a5cc79ef7 /content/content_shell.gypi
parentf71a87878f4f1c2f18d54d989a320fb86864580b (diff)
downloadchromium_src-de5b7a4a1fdb5f5b84b86c86e4aa65bed0e7d8d1.zip
chromium_src-de5b7a4a1fdb5f5b84b86c86e4aa65bed0e7d8d1.tar.gz
chromium_src-de5b7a4a1fdb5f5b84b86c86e4aa65bed0e7d8d1.tar.bz2
Fix the content_shell.apk in android x86 target build bug, copy the libcontent_shell_content_view.so and gdbserver to the correct position.
BUG=127532 TEST= Review URL: https://chromiumcodereview.appspot.com/10388067 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137370 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_shell.gypi')
-rw-r--r--content/content_shell.gypi5
1 files changed, 3 insertions, 2 deletions
diff --git a/content/content_shell.gypi b/content/content_shell.gypi
index 4a67c23..965cc9d 100644
--- a/content/content_shell.gypi
+++ b/content/content_shell.gypi
@@ -548,7 +548,7 @@
{
'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'],
+ 'outputs': ['<(PRODUCT_DIR)/content_shell/libs/<(android_app_abi)/libcontent_shell_content_view.so'],
'action': [
'<!(/bin/echo -n $STRIP)',
'--strip-unneeded', # All symbols not needed for relocation.
@@ -568,7 +568,7 @@
'<(PRODUCT_DIR)/content_shell/java/libs/chromium_net.jar',
'<(PRODUCT_DIR)/content_shell/java/libs/chromium_media.jar',
'<(PRODUCT_DIR)/content_shell/java/libs/chromium_content.jar',
- '<(PRODUCT_DIR)/content_shell/libs/armeabi/libcontent_shell_content_view.so',
+ '<(PRODUCT_DIR)/content_shell/libs/<(android_app_abi)/libcontent_shell_content_view.so',
],
'outputs': [
# Awkwardly, we build a Debug APK even when gyp is in
@@ -580,6 +580,7 @@
'action': [
'ant',
'-DPRODUCT_DIR=<(PRODUCT_DIR)',
+ '-DAPP_ABI=<(android_app_abi)',
'-buildfile',
'<(DEPTH)/content/shell/android/content_shell_apk.xml',
]