Fix orderfile buildbot by excluding SaturatedArithmetic.h from instrumentation.
The methods in that header are inline assembly which require inlining, so
instrumentation doesn't work with them, and also doesn't matter.
BUG=
Review URL: https://codereview.chromium.org/369833003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@281435 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/build/common.gypi b/build/common.gypi
index 110914a3..d3f3777a 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -4133,7 +4133,7 @@
'cflags': [
# Avoids errors with current NDK:
# "third_party/android_tools/ndk/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86_64/bin/../lib/gcc/arm-linux-androideabi/4.6/include/arm_neon.h:3426:3: error: argument must be a constant"
- '-finstrument-functions-exclude-file-list=arm_neon.h',
+ '-finstrument-functions-exclude-file-list=arm_neon.h,SaturatedArithmeticARM.h',
],
}],
],