| 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 13 matching lines...) Expand all Loading... |
| 24 'objc/RTCIceCandidate.mm', | 24 'objc/RTCIceCandidate.mm', |
| 25 'objc/RTCIceServer+Private.h', | 25 'objc/RTCIceServer+Private.h', |
| 26 'objc/RTCIceServer.h', | 26 'objc/RTCIceServer.h', |
| 27 'objc/RTCIceServer.mm', | 27 'objc/RTCIceServer.mm', |
| 28 'objc/RTCMediaConstraints+Private.h', | 28 'objc/RTCMediaConstraints+Private.h', |
| 29 'objc/RTCMediaConstraints.h', | 29 'objc/RTCMediaConstraints.h', |
| 30 'objc/RTCMediaConstraints.mm', | 30 'objc/RTCMediaConstraints.mm', |
| 31 'objc/RTCMediaStreamTrack+Private.h', | 31 'objc/RTCMediaStreamTrack+Private.h', |
| 32 'objc/RTCMediaStreamTrack.h', | 32 'objc/RTCMediaStreamTrack.h', |
| 33 'objc/RTCMediaStreamTrack.mm', | 33 'objc/RTCMediaStreamTrack.mm', |
| 34 'objc/RTCOpenGLVideoRenderer.h', |
| 35 'objc/RTCOpenGLVideoRenderer.mm', |
| 34 'objc/RTCSessionDescription+Private.h', | 36 'objc/RTCSessionDescription+Private.h', |
| 35 'objc/RTCSessionDescription.h', | 37 'objc/RTCSessionDescription.h', |
| 36 'objc/RTCSessionDescription.mm', | 38 'objc/RTCSessionDescription.mm', |
| 37 'objc/RTCStatsReport+Private.h', | 39 'objc/RTCStatsReport+Private.h', |
| 38 'objc/RTCStatsReport.h', | 40 'objc/RTCStatsReport.h', |
| 39 'objc/RTCStatsReport.mm', | 41 'objc/RTCStatsReport.mm', |
| 40 'objc/RTCVideoFrame+Private.h', | 42 'objc/RTCVideoFrame+Private.h', |
| 41 'objc/RTCVideoFrame.h', | 43 'objc/RTCVideoFrame.h', |
| 42 'objc/RTCVideoFrame.mm', | 44 'objc/RTCVideoFrame.mm', |
| 45 'objc/RTCVideoRenderer.h', |
| 46 ], |
| 47 'conditions': [ |
| 48 ['OS=="ios"', { |
| 49 'sources': [ |
| 50 'objc/RTCEAGLVideoView.h', |
| 51 'objc/RTCEAGLVideoView.m', |
| 52 ], |
| 53 'all_dependent_settings': { |
| 54 'xcode_settings': { |
| 55 'OTHER_LDFLAGS': [ |
| 56 '-framework CoreGraphics', |
| 57 '-framework GLKit', |
| 58 '-framework OpenGLES', |
| 59 '-framework QuartzCore', |
| 60 ] |
| 61 } |
| 62 } |
| 63 }], |
| 64 ['OS=="mac"', { |
| 65 'sources': [ |
| 66 'objc/RTCNSGLVideoView.h', |
| 67 'objc/RTCNSGLVideoView.m', |
| 68 ], |
| 69 }], |
| 43 ], | 70 ], |
| 44 'xcode_settings': { | 71 'xcode_settings': { |
| 45 'CLANG_ENABLE_OBJC_ARC': 'YES', | 72 'CLANG_ENABLE_OBJC_ARC': 'YES', |
| 46 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES', | 73 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES', |
| 47 'GCC_PREFIX_HEADER': 'objc/WebRTC-Prefix.pch', | 74 'GCC_PREFIX_HEADER': 'objc/WebRTC-Prefix.pch', |
| 48 }, | 75 }, |
| 49 } | 76 } |
| 50 ], | 77 ], |
| 51 }], # OS=="ios" | 78 }], # OS=="ios" |
| 52 ], | 79 ], |
| 53 } | 80 } |
| OLD | NEW |