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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 'objc/RTCMediaConstraints.h', | 44 'objc/RTCMediaConstraints.h', |
45 'objc/RTCMediaConstraints.mm', | 45 'objc/RTCMediaConstraints.mm', |
46 'objc/RTCMediaStream+Private.h', | 46 'objc/RTCMediaStream+Private.h', |
47 'objc/RTCMediaStream.h', | 47 'objc/RTCMediaStream.h', |
48 'objc/RTCMediaStream.mm', | 48 'objc/RTCMediaStream.mm', |
49 'objc/RTCMediaStreamTrack+Private.h', | 49 'objc/RTCMediaStreamTrack+Private.h', |
50 'objc/RTCMediaStreamTrack.h', | 50 'objc/RTCMediaStreamTrack.h', |
51 'objc/RTCMediaStreamTrack.mm', | 51 'objc/RTCMediaStreamTrack.mm', |
52 'objc/RTCOpenGLVideoRenderer.h', | 52 'objc/RTCOpenGLVideoRenderer.h', |
53 'objc/RTCOpenGLVideoRenderer.mm', | 53 'objc/RTCOpenGLVideoRenderer.mm', |
| 54 'objc/RTCPeerConnection+Private.h', |
| 55 'objc/RTCPeerConnection.h', |
| 56 'objc/RTCPeerConnection.mm', |
| 57 'objc/RTCPeerConnectionDelegate.h', |
54 'objc/RTCPeerConnectionFactory+Private.h', | 58 'objc/RTCPeerConnectionFactory+Private.h', |
55 'objc/RTCPeerConnectionFactory.h', | 59 'objc/RTCPeerConnectionFactory.h', |
56 'objc/RTCPeerConnectionFactory.mm', | 60 'objc/RTCPeerConnectionFactory.mm', |
| 61 'objc/RTCPeerConnectionObserver.h', |
| 62 'objc/RTCPeerConnectionObserver.mm', |
57 'objc/RTCSessionDescription+Private.h', | 63 'objc/RTCSessionDescription+Private.h', |
58 'objc/RTCSessionDescription.h', | 64 'objc/RTCSessionDescription.h', |
59 'objc/RTCSessionDescription.mm', | 65 'objc/RTCSessionDescription.mm', |
60 'objc/RTCStatsReport+Private.h', | 66 'objc/RTCStatsReport+Private.h', |
61 'objc/RTCStatsReport.h', | 67 'objc/RTCStatsReport.h', |
62 'objc/RTCStatsReport.mm', | 68 'objc/RTCStatsReport.mm', |
63 'objc/RTCVideoFrame+Private.h', | 69 'objc/RTCVideoFrame+Private.h', |
64 'objc/RTCVideoFrame.h', | 70 'objc/RTCVideoFrame.h', |
65 'objc/RTCVideoFrame.mm', | 71 'objc/RTCVideoFrame.mm', |
66 'objc/RTCVideoRenderer.h', | 72 'objc/RTCVideoRenderer.h', |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 'xcode_settings': { | 109 'xcode_settings': { |
104 'CLANG_ENABLE_OBJC_ARC': 'YES', | 110 'CLANG_ENABLE_OBJC_ARC': 'YES', |
105 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES', | 111 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES', |
106 'GCC_PREFIX_HEADER': 'objc/WebRTC-Prefix.pch', | 112 'GCC_PREFIX_HEADER': 'objc/WebRTC-Prefix.pch', |
107 }, | 113 }, |
108 } | 114 } |
109 ], | 115 ], |
110 }], # OS=="ios" | 116 }], # OS=="ios" |
111 ], | 117 ], |
112 } | 118 } |
OLD | NEW |