Now try and make -pie stick for 32-bit Linux too.

TBR=jeffbailey
Review URL: http://codereview.chromium.org/7240019

git-svn-id: http://src.chromium.org/svn/trunk/src/build@90335 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
cevans@chromium.org 2011-06-24 03:15:13 +00:00
Родитель d45c9753db
Коммит 682ebd0cb8
1 изменённых файлов: 4 добавлений и 8 удалений

Просмотреть файл

@ -145,6 +145,10 @@
# Has no effect if 'clang' is not set as well.
'clang_use_chrome_plugins%': 0,
# Set to 1 compile with -fPIC cflag on linux. This is a must for shared
# libraries on linux x86-64 and arm, plus ASLR.
'linux_fpic%': 1,
'conditions': [
# Use Skia as WebKit renderer on Mac
['OS=="mac"', {
@ -179,14 +183,6 @@
'use_gnome_keyring%': 1,
}],
# Set to 1 compile with -fPIC cflag on linux. This is a must for shared
# libraries on linux x86-64 and arm.
['host_arch=="ia32"', {
'linux_fpic%': 0,
}, {
'linux_fpic%': 1,
}],
['toolkit_views==0 or OS=="mac"', {
# GTK+ and Mac wants Title Case strings
'use_titlecase_in_grd_files%': 1,