diff options
author | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-25 23:10:58 +0000 |
---|---|---|
committer | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-25 23:10:58 +0000 |
commit | c76723a1f489484af50a177bd4020c1ed38e65ed (patch) | |
tree | a6fe211e4f8fa42ac76818a4f9d2d27720897fba /build/common.gypi | |
parent | 55ac7ea2120b48f88040289986bb46d530e6c296 (diff) | |
download | chromium_src-c76723a1f489484af50a177bd4020c1ed38e65ed.zip chromium_src-c76723a1f489484af50a177bd4020c1ed38e65ed.tar.gz chromium_src-c76723a1f489484af50a177bd4020c1ed38e65ed.tar.bz2 |
linux: enable pepper plugin
This is CL 36399 that was reverted in 36969 because it caused an ICE on the official builders.
This adds a workaround for the ICE.
Review URL: http://codereview.chromium.org/546136
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37055 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/common.gypi')
-rw-r--r-- | build/common.gypi | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi index 819515c..76af9cc 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -187,6 +187,8 @@ # Enable TCMalloc. 'linux_use_tcmalloc%': 0, + 'linux_fpic%': 0, + # Set to select the Title Case versions of strings in GRD files. 'use_titlecase_in_grd_files%': 0, @@ -806,6 +808,11 @@ }], ], }], + ['linux_fpic==1', { + 'cflags': [ + '-fPIC', + ], + }], ['sysroot!=""', { 'target_conditions': [ ['_toolset=="target"', { |