summaryrefslogtreecommitdiffstats
path: root/content/content_shell.gypi
diff options
context:
space:
mode:
authorsteveblock@chromium.org <steveblock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-27 17:09:48 +0000
committersteveblock@chromium.org <steveblock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-27 17:09:48 +0000
commit7abcaa84adc558beb607a3f5133e9e86039b31f3 (patch)
treed82081ab8615a89ba4c101cafd5916134990fd7b /content/content_shell.gypi
parent3bb000e4753dd4148cc4c247de5db55c5c5417b4 (diff)
downloadchromium_src-7abcaa84adc558beb607a3f5133e9e86039b31f3.zip
chromium_src-7abcaa84adc558beb607a3f5133e9e86039b31f3.tar.gz
chromium_src-7abcaa84adc558beb607a3f5133e9e86039b31f3.tar.bz2
Link against gabi++ when building with the Android build system
When building with the NDK, RTTI is provided by stlport, but when building with the Android build system, it is provided by gabi++. Review URL: https://chromiumcodereview.appspot.com/10695008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@144470 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_shell.gypi')
-rw-r--r--content/content_shell.gypi7
1 files changed, 7 insertions, 0 deletions
diff --git a/content/content_shell.gypi b/content/content_shell.gypi
index a41d172..b8dcf1e 100644
--- a/content/content_shell.gypi
+++ b/content/content_shell.gypi
@@ -505,6 +505,13 @@
'shell/android/shell_view.cc',
'shell/android/shell_view.h',
],
+ 'conditions': [
+ ['android_build_type==1', {
+ 'ldflags': [
+ '-lgabi++', # For rtti
+ ],
+ }],
+ ],
},
{
'target_name': 'content_shell_apk',