Suppress deprecation warnings in video_capture for iOS
The chromium_revision roll in r6913 broke the iOS build since the videoMinFrameDuration and videoMaxFrameDuration properties have been deprecated in iOS 7.0, which is now the default target platform for iOS. BUG=3705 TEST=Passing ios and ios_rel trybots. TBR=tkchin@webrtc.org Review URL: https://webrtc-codereview.appspot.com/22389004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6914 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
34a865a038
commit
d235eaef25
@ -116,6 +116,12 @@
|
||||
],
|
||||
'xcode_settings': {
|
||||
'CLANG_ENABLE_OBJC_ARC': 'YES',
|
||||
'WARNING_CFLAGS': [
|
||||
# To avoid warnings for deprecated videoMinFrameDuration and
|
||||
# videoMaxFrameDuration properties in iOS 7.0.
|
||||
# See webrtc:3705 for more details.
|
||||
'-Wno-deprecated-declarations',
|
||||
],
|
||||
},
|
||||
'all_dependent_settings': {
|
||||
'xcode_settings': {
|
||||
|
Loading…
x
Reference in New Issue
Block a user