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

Side by Side Diff: webrtc/examples/BUILD.gn

Issue 2627523004: Update ice server provider response format in iOS AppRTCMobile (Closed)
Patch Set: pass url instead of string Created 3 years, 11 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) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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 import("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 if (is_android) { 10 if (is_android) {
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 182
183 rtc_static_library("apprtc_signaling") { 183 rtc_static_library("apprtc_signaling") {
184 sources = [ 184 sources = [
185 "objc/AppRTCMobile/ARDAppClient+Internal.h", 185 "objc/AppRTCMobile/ARDAppClient+Internal.h",
186 "objc/AppRTCMobile/ARDAppClient.h", 186 "objc/AppRTCMobile/ARDAppClient.h",
187 "objc/AppRTCMobile/ARDAppClient.m", 187 "objc/AppRTCMobile/ARDAppClient.m",
188 "objc/AppRTCMobile/ARDAppEngineClient.h", 188 "objc/AppRTCMobile/ARDAppEngineClient.h",
189 "objc/AppRTCMobile/ARDAppEngineClient.m", 189 "objc/AppRTCMobile/ARDAppEngineClient.m",
190 "objc/AppRTCMobile/ARDBitrateTracker.h", 190 "objc/AppRTCMobile/ARDBitrateTracker.h",
191 "objc/AppRTCMobile/ARDBitrateTracker.m", 191 "objc/AppRTCMobile/ARDBitrateTracker.m",
192 "objc/AppRTCMobile/ARDCEODTURNClient.h",
193 "objc/AppRTCMobile/ARDCEODTURNClient.m",
194 "objc/AppRTCMobile/ARDJoinResponse+Internal.h", 192 "objc/AppRTCMobile/ARDJoinResponse+Internal.h",
195 "objc/AppRTCMobile/ARDJoinResponse.h", 193 "objc/AppRTCMobile/ARDJoinResponse.h",
196 "objc/AppRTCMobile/ARDJoinResponse.m", 194 "objc/AppRTCMobile/ARDJoinResponse.m",
197 "objc/AppRTCMobile/ARDMessageResponse+Internal.h", 195 "objc/AppRTCMobile/ARDMessageResponse+Internal.h",
198 "objc/AppRTCMobile/ARDMessageResponse.h", 196 "objc/AppRTCMobile/ARDMessageResponse.h",
199 "objc/AppRTCMobile/ARDMessageResponse.m", 197 "objc/AppRTCMobile/ARDMessageResponse.m",
200 "objc/AppRTCMobile/ARDRoomServerClient.h", 198 "objc/AppRTCMobile/ARDRoomServerClient.h",
201 "objc/AppRTCMobile/ARDSDPUtils.h", 199 "objc/AppRTCMobile/ARDSDPUtils.h",
202 "objc/AppRTCMobile/ARDSDPUtils.m", 200 "objc/AppRTCMobile/ARDSDPUtils.m",
203 "objc/AppRTCMobile/ARDSignalingChannel.h", 201 "objc/AppRTCMobile/ARDSignalingChannel.h",
204 "objc/AppRTCMobile/ARDSignalingMessage.h", 202 "objc/AppRTCMobile/ARDSignalingMessage.h",
205 "objc/AppRTCMobile/ARDSignalingMessage.m", 203 "objc/AppRTCMobile/ARDSignalingMessage.m",
206 "objc/AppRTCMobile/ARDStatsBuilder.h", 204 "objc/AppRTCMobile/ARDStatsBuilder.h",
207 "objc/AppRTCMobile/ARDStatsBuilder.m", 205 "objc/AppRTCMobile/ARDStatsBuilder.m",
206 "objc/AppRTCMobile/ARDTURNClient+Internal.h",
208 "objc/AppRTCMobile/ARDTURNClient.h", 207 "objc/AppRTCMobile/ARDTURNClient.h",
208 "objc/AppRTCMobile/ARDTURNClient.m",
209 "objc/AppRTCMobile/ARDWebSocketChannel.h", 209 "objc/AppRTCMobile/ARDWebSocketChannel.h",
210 "objc/AppRTCMobile/ARDWebSocketChannel.m", 210 "objc/AppRTCMobile/ARDWebSocketChannel.m",
211 "objc/AppRTCMobile/RTCIceCandidate+JSON.h", 211 "objc/AppRTCMobile/RTCIceCandidate+JSON.h",
212 "objc/AppRTCMobile/RTCIceCandidate+JSON.m", 212 "objc/AppRTCMobile/RTCIceCandidate+JSON.m",
213 "objc/AppRTCMobile/RTCIceServer+JSON.h", 213 "objc/AppRTCMobile/RTCIceServer+JSON.h",
214 "objc/AppRTCMobile/RTCIceServer+JSON.m", 214 "objc/AppRTCMobile/RTCIceServer+JSON.m",
215 "objc/AppRTCMobile/RTCMediaConstraints+JSON.h", 215 "objc/AppRTCMobile/RTCMediaConstraints+JSON.h",
216 "objc/AppRTCMobile/RTCMediaConstraints+JSON.m", 216 "objc/AppRTCMobile/RTCMediaConstraints+JSON.m",
217 "objc/AppRTCMobile/RTCSessionDescription+JSON.h", 217 "objc/AppRTCMobile/RTCSessionDescription+JSON.h",
218 "objc/AppRTCMobile/RTCSessionDescription+JSON.m", 218 "objc/AppRTCMobile/RTCSessionDescription+JSON.m",
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
589 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 589 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
590 } 590 }
591 591
592 deps = [ 592 deps = [
593 "../p2p:libstunprober", 593 "../p2p:libstunprober",
594 "../p2p:rtc_p2p", 594 "../p2p:rtc_p2p",
595 "../system_wrappers:field_trial_default", 595 "../system_wrappers:field_trial_default",
596 ] 596 ]
597 } 597 }
598 } 598 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/examples/objc/AppRTCMobile/ARDAppClient.m » ('j') | webrtc/examples/objc/AppRTCMobile/ARDTURNClient.m » ('J')

Powered by Google App Engine
This is Rietveld 408576698