diff options
Diffstat (limited to 'build/common.gypi')
-rw-r--r-- | build/common.gypi | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/build/common.gypi b/build/common.gypi index e9c64dd..2e12840 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -163,6 +163,9 @@ # isn't supported 'disable_nacl%': 0, + # Set ARM-v7 compilation flags + 'armv7%': 0, + 'conditions': [ ['OS=="linux"', { 'conditions': [ @@ -650,11 +653,11 @@ }], ['target_arch=="arm"', { 'conditions': [ - ['chromeos==1', { + ['armv7==1', { 'cflags': [ '-march=armv7-a', '-mtune=cortex-a8', - '-mfpu=vfp', + '-mfpu=neon', '-mfloat-abi=softfp', ], }], |