Disable compiler option 'mimplicit-it' for Android ARM

Android NDK toolchain doesn't support it.

BUG=
TEST=


Review URL: https://chromiumcodereview.appspot.com/10824330

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@152315 0039d316-1c4b-4281-b951-d872f2087c98
parent 9b6edd72
......@@ -522,7 +522,8 @@
],
'conditions': [
['target_arch=="arm"', {
# Android NDK toolchain doesn't support -mimplicit-it=always
['target_arch=="arm" and OS!="android"', {
'cflags': ['-Wa,-mimplicit-it=always'],
}],
['OS=="android"', {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment