├── .gitmodules ├── BUILDING.md ├── IOS_PATCHES_README.md ├── Makefile ├── README.md ├── bin ├── apply_signal_patches ├── clean_webrtc.py └── print_build_env.py ├── ios-patches ├── .gitkeep └── 005_support_ios9.diff └── webrtc ├── .gclient ├── .gclient_entries └── .gitignore /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalapp/signal-webrtc-ios/HEAD/.gitmodules -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalapp/signal-webrtc-ios/HEAD/BUILDING.md -------------------------------------------------------------------------------- /IOS_PATCHES_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalapp/signal-webrtc-ios/HEAD/IOS_PATCHES_README.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalapp/signal-webrtc-ios/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalapp/signal-webrtc-ios/HEAD/README.md -------------------------------------------------------------------------------- /bin/apply_signal_patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalapp/signal-webrtc-ios/HEAD/bin/apply_signal_patches -------------------------------------------------------------------------------- /bin/clean_webrtc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalapp/signal-webrtc-ios/HEAD/bin/clean_webrtc.py -------------------------------------------------------------------------------- /bin/print_build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalapp/signal-webrtc-ios/HEAD/bin/print_build_env.py -------------------------------------------------------------------------------- /ios-patches/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios-patches/005_support_ios9.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalapp/signal-webrtc-ios/HEAD/ios-patches/005_support_ios9.diff -------------------------------------------------------------------------------- /webrtc/.gclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalapp/signal-webrtc-ios/HEAD/webrtc/.gclient -------------------------------------------------------------------------------- /webrtc/.gclient_entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalapp/signal-webrtc-ios/HEAD/webrtc/.gclient_entries -------------------------------------------------------------------------------- /webrtc/.gitignore: -------------------------------------------------------------------------------- 1 | .cipd 2 | --------------------------------------------------------------------------------