Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(812)

Unified Diff: webrtc/build/common.gypi

Issue 1321193003: Android: Enable C99 mode instead of C89 (default). (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix comment Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/modules/audio_coding/codecs/ilbc/nearest_neighbor.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/build/common.gypi
diff --git a/webrtc/build/common.gypi b/webrtc/build/common.gypi
index 5caa6cc10c84d8d0206ba667606b1ad3dd7dfbf1..be1451d64326278c22af993957f660400d232a0f 100644
--- a/webrtc/build/common.gypi
+++ b/webrtc/build/common.gypi
@@ -373,14 +373,18 @@
],
'conditions': [
['clang==0', {
- # The Android NDK doesn't provide optimized versions of these
- # functions. Ensure they are disabled for all compilers.
'cflags': [
+ # The Android NDK doesn't provide optimized versions of these
+ # functions. Ensure they are disabled for all compilers.
'-fno-builtin-cos',
'-fno-builtin-sin',
'-fno-builtin-cosf',
'-fno-builtin-sinf',
],
+ 'cflags_c': [
+ # Use C99 mode instead of C89 (default).
+ '-std=c99',
+ ]
}],
],
}],
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/modules/audio_coding/codecs/ilbc/nearest_neighbor.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698