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

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

Issue 1640993002: Update API for Objective-C RTCPeerConnection. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Changes based on feedback 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
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
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',
54 'objc/RTCPeerConnectionFactory+Private.h', 57 'objc/RTCPeerConnectionFactory+Private.h',
55 'objc/RTCPeerConnectionFactory.h', 58 'objc/RTCPeerConnectionFactory.h',
56 'objc/RTCPeerConnectionFactory.mm', 59 'objc/RTCPeerConnectionFactory.mm',
57 'objc/RTCSessionDescription+Private.h', 60 'objc/RTCSessionDescription+Private.h',
58 'objc/RTCSessionDescription.h', 61 'objc/RTCSessionDescription.h',
59 'objc/RTCSessionDescription.mm', 62 'objc/RTCSessionDescription.mm',
60 'objc/RTCStatsReport+Private.h', 63 'objc/RTCStatsReport+Private.h',
61 'objc/RTCStatsReport.h', 64 'objc/RTCStatsReport.h',
62 'objc/RTCStatsReport.mm', 65 'objc/RTCStatsReport.mm',
63 'objc/RTCVideoFrame+Private.h', 66 'objc/RTCVideoFrame+Private.h',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 'xcode_settings': { 106 'xcode_settings': {
104 'CLANG_ENABLE_OBJC_ARC': 'YES', 107 'CLANG_ENABLE_OBJC_ARC': 'YES',
105 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES', 108 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES',
106 'GCC_PREFIX_HEADER': 'objc/WebRTC-Prefix.pch', 109 'GCC_PREFIX_HEADER': 'objc/WebRTC-Prefix.pch',
107 }, 110 },
108 } 111 }
109 ], 112 ],
110 }], # OS=="ios" 113 }], # OS=="ios"
111 ], 114 ],
112 } 115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698