Disable soft floating point on ChromeOS

Should fix the Daisy build.

R=djsollen@google.com

Review URL: https://codereview.chromium.org/18812006

git-svn-id: http://skia.googlecode.com/svn/trunk@10020 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
borenet@google.com 2013-07-11 18:46:30 +00:00
parent fa05719ce2
commit e2b9037c40

View File

@ -150,7 +150,6 @@
], ],
'cflags': [ 'cflags': [
'-march=armv7-a', '-march=armv7-a',
'-mfloat-abi=softfp',
], ],
'conditions': [ 'conditions': [
[ 'arm_neon == 1', { [ 'arm_neon == 1', {
@ -170,6 +169,11 @@
'__ARM_HAVE_OPTIONAL_NEON_SUPPORT', '__ARM_HAVE_OPTIONAL_NEON_SUPPORT',
], ],
}], }],
[ 'skia_os != "chromeos"', {
'cflags': [
'-mfloat-abi=softfp',
],
}],
], ],
}], }],
], ],