├── .gitignore ├── README.md ├── _.travis.yml ├── ci-all-run.bash ├── ci-dummy-project └── WebrtcIosBuild │ ├── WebrtcIosBuild.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── WebrtcIosBuild.xcscheme │ └── WebrtcIosBuild │ ├── WebrtcIosBuild.h │ └── WebrtcIosBuild.m ├── example └── AppRTCDemo │ ├── .gitignore │ ├── AppRTCDemo-iOS │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ └── Icon_120.png │ │ ├── Brand Assets.launchimage │ │ │ ├── Contents.json │ │ │ └── iPhone5@2x.png │ │ └── Contents.json │ └── Info.plist │ ├── AppRTCDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── AppRTCDemo │ ├── ARDAppClient+Internal.h │ ├── ARDAppClient.h │ ├── ARDAppClient.m │ ├── ARDAppEngineClient.h │ ├── ARDAppEngineClient.m │ ├── ARDBitrateTracker.h │ ├── ARDBitrateTracker.m │ ├── ARDCEODTURNClient.h │ ├── ARDCEODTURNClient.m │ ├── ARDJoinResponse+Internal.h │ ├── ARDJoinResponse.h │ ├── ARDJoinResponse.m │ ├── ARDMessageResponse+Internal.h │ ├── ARDMessageResponse.h │ ├── ARDMessageResponse.m │ ├── ARDRoomServerClient.h │ ├── ARDSDPUtils.h │ ├── ARDSDPUtils.m │ ├── ARDSignalingChannel.h │ ├── ARDSignalingMessage.h │ ├── ARDSignalingMessage.m │ ├── ARDStatsBuilder.h │ ├── ARDStatsBuilder.m │ ├── ARDTURNClient.h │ ├── ARDWebSocketChannel.h │ ├── ARDWebSocketChannel.m │ ├── RTCICECandidate+JSON.h │ ├── RTCICECandidate+JSON.m │ ├── RTCICEServer+JSON.h │ ├── RTCICEServer+JSON.m │ ├── RTCMediaConstraints+JSON.h │ ├── RTCMediaConstraints+JSON.m │ ├── RTCSessionDescription+JSON.h │ ├── RTCSessionDescription+JSON.m │ ├── common │ │ ├── ARDUtilities.h │ │ └── ARDUtilities.m │ ├── ios │ │ ├── ARDAppDelegate.h │ │ ├── ARDAppDelegate.m │ │ ├── ARDMainView.h │ │ ├── ARDMainView.m │ │ ├── ARDMainViewController.h │ │ ├── ARDMainViewController.m │ │ ├── ARDStatsView.h │ │ ├── ARDStatsView.m │ │ ├── ARDVideoCallView.h │ │ ├── ARDVideoCallView.m │ │ ├── ARDVideoCallViewController.h │ │ ├── ARDVideoCallViewController.m │ │ ├── AppRTCDemo-Prefix.pch │ │ ├── Info.plist │ │ ├── UIImage+ARDUtilities.h │ │ ├── UIImage+ARDUtilities.m │ │ ├── main.m │ │ └── resources │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── iPhone5@2x.png │ │ │ ├── iPhone6@2x.png │ │ │ ├── iPhone6p@3x.png │ │ │ ├── ic_call_end_black_24dp.png │ │ │ ├── ic_call_end_black_24dp@2x.png │ │ │ ├── ic_clear_black_24dp.png │ │ │ ├── ic_clear_black_24dp@2x.png │ │ │ ├── ic_switch_video_black_24dp.png │ │ │ └── ic_switch_video_black_24dp@2x.png │ ├── mac │ │ ├── APPRTCAppDelegate.h │ │ ├── APPRTCAppDelegate.m │ │ ├── APPRTCViewController.h │ │ ├── APPRTCViewController.m │ │ ├── Info.plist │ │ └── main.m │ ├── tests │ │ └── ARDAppClientTest.mm │ └── third_party │ │ └── SocketRocket │ │ ├── LICENSE │ │ ├── SRWebSocket.h │ │ └── SRWebSocket.m │ ├── Icon.png │ └── LICENSE ├── fetch-webrtc-ios.bash ├── framework-project ├── webrtc.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── webrtc │ ├── Info.plist │ └── webrtc.h ├── lib ├── common-gypi-patcher.rb ├── patcher.rb ├── regex-patcher.rb ├── rtc-base-objc-patcher.rb └── xcode-bitcode-patcher.rb ├── out └── .keep ├── travis-install.bash ├── webrtc-ios-build.rb └── webrtc_ios └── .keep /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | xcuserdata 3 | /out/* 4 | /webrtc_ios/* 5 | !.keep 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/README.md -------------------------------------------------------------------------------- /_.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/_.travis.yml -------------------------------------------------------------------------------- /ci-all-run.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/ci-all-run.bash -------------------------------------------------------------------------------- /ci-dummy-project/WebrtcIosBuild/WebrtcIosBuild.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/ci-dummy-project/WebrtcIosBuild/WebrtcIosBuild.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ci-dummy-project/WebrtcIosBuild/WebrtcIosBuild.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/ci-dummy-project/WebrtcIosBuild/WebrtcIosBuild.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ci-dummy-project/WebrtcIosBuild/WebrtcIosBuild.xcodeproj/xcshareddata/xcschemes/WebrtcIosBuild.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/ci-dummy-project/WebrtcIosBuild/WebrtcIosBuild.xcodeproj/xcshareddata/xcschemes/WebrtcIosBuild.xcscheme -------------------------------------------------------------------------------- /ci-dummy-project/WebrtcIosBuild/WebrtcIosBuild/WebrtcIosBuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/ci-dummy-project/WebrtcIosBuild/WebrtcIosBuild/WebrtcIosBuild.h -------------------------------------------------------------------------------- /ci-dummy-project/WebrtcIosBuild/WebrtcIosBuild/WebrtcIosBuild.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/ci-dummy-project/WebrtcIosBuild/WebrtcIosBuild/WebrtcIosBuild.m -------------------------------------------------------------------------------- /example/AppRTCDemo/.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata 2 | -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo-iOS/Assets.xcassets/AppIcon.appiconset/Icon_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo-iOS/Assets.xcassets/AppIcon.appiconset/Icon_120.png -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo-iOS/Assets.xcassets/Brand Assets.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo-iOS/Assets.xcassets/Brand Assets.launchimage/Contents.json -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo-iOS/Assets.xcassets/Brand Assets.launchimage/iPhone5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo-iOS/Assets.xcassets/Brand Assets.launchimage/iPhone5@2x.png -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo-iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo-iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo-iOS/Info.plist -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDAppClient+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDAppClient+Internal.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDAppClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDAppClient.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDAppClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDAppClient.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDAppEngineClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDAppEngineClient.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDAppEngineClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDAppEngineClient.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDBitrateTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDBitrateTracker.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDBitrateTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDBitrateTracker.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDCEODTURNClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDCEODTURNClient.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDCEODTURNClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDCEODTURNClient.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDJoinResponse+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDJoinResponse+Internal.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDJoinResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDJoinResponse.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDJoinResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDJoinResponse.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDMessageResponse+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDMessageResponse+Internal.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDMessageResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDMessageResponse.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDMessageResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDMessageResponse.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDRoomServerClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDRoomServerClient.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDSDPUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDSDPUtils.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDSDPUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDSDPUtils.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDSignalingChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDSignalingChannel.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDSignalingMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDSignalingMessage.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDSignalingMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDSignalingMessage.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDStatsBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDStatsBuilder.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDStatsBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDStatsBuilder.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDTURNClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDTURNClient.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDWebSocketChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDWebSocketChannel.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ARDWebSocketChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ARDWebSocketChannel.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/RTCICECandidate+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/RTCICECandidate+JSON.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/RTCICECandidate+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/RTCICECandidate+JSON.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/RTCICEServer+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/RTCICEServer+JSON.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/RTCICEServer+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/RTCICEServer+JSON.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/RTCMediaConstraints+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/RTCMediaConstraints+JSON.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/RTCMediaConstraints+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/RTCMediaConstraints+JSON.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/RTCSessionDescription+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/RTCSessionDescription+JSON.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/RTCSessionDescription+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/RTCSessionDescription+JSON.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/common/ARDUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/common/ARDUtilities.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/common/ARDUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/common/ARDUtilities.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/ARDAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/ARDAppDelegate.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/ARDAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/ARDAppDelegate.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/ARDMainView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/ARDMainView.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/ARDMainView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/ARDMainView.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/ARDMainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/ARDMainViewController.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/ARDMainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/ARDMainViewController.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/ARDStatsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/ARDStatsView.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/ARDStatsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/ARDStatsView.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/ARDVideoCallView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/ARDVideoCallView.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/ARDVideoCallView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/ARDVideoCallView.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/ARDVideoCallViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/ARDVideoCallViewController.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/ARDVideoCallViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/ARDVideoCallViewController.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/AppRTCDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/AppRTCDemo-Prefix.pch -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/Info.plist -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/UIImage+ARDUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/UIImage+ARDUtilities.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/UIImage+ARDUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/UIImage+ARDUtilities.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/main.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/resources/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/resources/Roboto-Regular.ttf -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/resources/iPhone5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/resources/iPhone5@2x.png -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/resources/iPhone6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/resources/iPhone6@2x.png -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/resources/iPhone6p@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/resources/iPhone6p@3x.png -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/resources/ic_call_end_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/resources/ic_call_end_black_24dp.png -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/resources/ic_call_end_black_24dp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/resources/ic_call_end_black_24dp@2x.png -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/resources/ic_clear_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/resources/ic_clear_black_24dp.png -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/resources/ic_clear_black_24dp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/resources/ic_clear_black_24dp@2x.png -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/resources/ic_switch_video_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/resources/ic_switch_video_black_24dp.png -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/ios/resources/ic_switch_video_black_24dp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/ios/resources/ic_switch_video_black_24dp@2x.png -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/mac/APPRTCAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/mac/APPRTCAppDelegate.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/mac/APPRTCAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/mac/APPRTCAppDelegate.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/mac/APPRTCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/mac/APPRTCViewController.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/mac/APPRTCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/mac/APPRTCViewController.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/mac/Info.plist -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/mac/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/mac/main.m -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/tests/ARDAppClientTest.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/tests/ARDAppClientTest.mm -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/third_party/SocketRocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/third_party/SocketRocket/LICENSE -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/third_party/SocketRocket/SRWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/third_party/SocketRocket/SRWebSocket.h -------------------------------------------------------------------------------- /example/AppRTCDemo/AppRTCDemo/third_party/SocketRocket/SRWebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/AppRTCDemo/third_party/SocketRocket/SRWebSocket.m -------------------------------------------------------------------------------- /example/AppRTCDemo/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/Icon.png -------------------------------------------------------------------------------- /example/AppRTCDemo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/example/AppRTCDemo/LICENSE -------------------------------------------------------------------------------- /fetch-webrtc-ios.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/fetch-webrtc-ios.bash -------------------------------------------------------------------------------- /framework-project/webrtc.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/framework-project/webrtc.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /framework-project/webrtc.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/framework-project/webrtc.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /framework-project/webrtc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/framework-project/webrtc/Info.plist -------------------------------------------------------------------------------- /framework-project/webrtc/webrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/framework-project/webrtc/webrtc.h -------------------------------------------------------------------------------- /lib/common-gypi-patcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/lib/common-gypi-patcher.rb -------------------------------------------------------------------------------- /lib/patcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/lib/patcher.rb -------------------------------------------------------------------------------- /lib/regex-patcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/lib/regex-patcher.rb -------------------------------------------------------------------------------- /lib/rtc-base-objc-patcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/lib/rtc-base-objc-patcher.rb -------------------------------------------------------------------------------- /lib/xcode-bitcode-patcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/lib/xcode-bitcode-patcher.rb -------------------------------------------------------------------------------- /out/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /travis-install.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/travis-install.bash -------------------------------------------------------------------------------- /webrtc-ios-build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omochi/webrtc-ios-build/HEAD/webrtc-ios-build.rb -------------------------------------------------------------------------------- /webrtc_ios/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------