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

Side by Side Diff: webrtc/api/api.gyp

Issue 1690313002: Update iOS AppRTCDemo to use the updated Objective-C API. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 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 unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/base/base.gyp » ('j') | webrtc/examples/objc/AppRTCDemo/ARDAppClient.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 { 9 {
10 'includes': [ '../build/common.gypi', ], 10 'includes': [ '../build/common.gypi', ],
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 ], 233 ],
234 }, 234 },
235 }], 235 }],
236 ['OS=="mac"', { 236 ['OS=="mac"', {
237 'sources': [ 237 'sources': [
238 'objc/RTCNSGLVideoView.h', 238 'objc/RTCNSGLVideoView.h',
239 'objc/RTCNSGLVideoView.m', 239 'objc/RTCNSGLVideoView.m',
240 ], 240 ],
241 }], 241 }],
242 ], 242 ],
243 'all_dependent_settings': {
244 'xcode_settings': {
245 'CLANG_ENABLE_OBJC_ARC': 'YES',
hjon_webrtc 2016/02/12 17:34:56 Is this how I should ensure ARC is enabled for app
246 },
247 },
243 'xcode_settings': { 248 'xcode_settings': {
244 'CLANG_ENABLE_OBJC_ARC': 'YES', 249 'CLANG_ENABLE_OBJC_ARC': 'YES',
245 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES', 250 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES',
246 'GCC_PREFIX_HEADER': 'objc/WebRTC-Prefix.pch', 251 'GCC_PREFIX_HEADER': 'objc/WebRTC-Prefix.pch',
247 }, 252 },
248 } 253 }
249 ], 254 ],
250 }], # OS=="ios" 255 }], # OS=="ios"
251 ], # conditions 256 ], # conditions
252 'targets': [ 257 'targets': [
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 'AdditionalOptions': [ 370 'AdditionalOptions': [
366 '-Wno-sign-compare', 371 '-Wno-sign-compare',
367 ], 372 ],
368 }, 373 },
369 }, 374 },
370 }], 375 }],
371 ], 376 ],
372 }, # target libjingle_peerconnection 377 }, # target libjingle_peerconnection
373 ], # targets 378 ], # targets
374 } 379 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/base/base.gyp » ('j') | webrtc/examples/objc/AppRTCDemo/ARDAppClient.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698