OLD | NEW |
---|---|
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 Loading... | |
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 Loading... | |
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 } |
OLD | NEW |