summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-18 20:35:54 +0000
committerhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-18 20:35:54 +0000
commit08be8a78fdca57d62b5b3a942a17e414af091fca (patch)
tree52d7af05b2d320608970b96356483598239f62fe /build
parent5eb4265b79482c18912fa9afce49d99030450ce5 (diff)
downloadchromium_src-08be8a78fdca57d62b5b3a942a17e414af091fca.zip
chromium_src-08be8a78fdca57d62b5b3a942a17e414af091fca.tar.gz
chromium_src-08be8a78fdca57d62b5b3a942a17e414af091fca.tar.bz2
test_shell buildable on ARM
GYP changes to allow test_shell be buildable on ARM so we can use it as a minimal browser for testing purpopse. Review URL: http://codereview.chromium.org/399077 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32386 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/common.gypi4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/common.gypi b/build/common.gypi
index 01136dc..8163dd0 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -725,8 +725,8 @@
# flag.
'cflags!': [ '-fvisibility=hidden' ],
'conditions': [
- ['target_arch=="x64"', {
- # Shared libraries need -fPIC on x86-64
+ ['target_arch=="x64" or target_arch=="arm"', {
+ # Shared libraries need -fPIC on x86-64 and arm
'cflags': ['-fPIC']
}]
],