summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authordeanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-29 15:56:00 +0000
committerdeanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-29 15:56:00 +0000
commit7e8eb76146a71ea8ee49fc7993da5a888840432d (patch)
tree6ba1bf7ea24bc30ec64414f6008bce88bf1fdc80 /build
parentbf68b6a4e079c76f18c2084757e518275cc7d2bb (diff)
downloadchromium_src-7e8eb76146a71ea8ee49fc7993da5a888840432d.zip
chromium_src-7e8eb76146a71ea8ee49fc7993da5a888840432d.tar.gz
chromium_src-7e8eb76146a71ea8ee49fc7993da5a888840432d.tar.bz2
Fix gyp condition for ia32 specific flags.
We should test if it's ia32, not if it's not arm. Patch by Joel Stanley. Review URL: http://codereview.chromium.org/160316 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21954 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/common.gypi2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/common.gypi b/build/common.gypi
index cc3d232..bd472e5 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -360,7 +360,7 @@
},
},
'conditions': [
- [ 'target_arch!="arm"', {
+ [ 'target_arch=="ia32"', {
'asflags': [
# Needed so that libs with .s files (e.g. libicudata.a)
# are compatible with the general 32-bit-ness.