├── .github └── workflows │ ├── webrtc-build.yml │ └── webrtc-release.yml ├── .gitignore ├── LICENSE.md ├── Package.swift ├── README.md ├── WebRTC-lib.podspec ├── WebRTC.json ├── clean.sh └── scripts ├── build.sh ├── gn-args └── release.py /.github/workflows/webrtc-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasel/WebRTC/HEAD/.github/workflows/webrtc-build.yml -------------------------------------------------------------------------------- /.github/workflows/webrtc-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasel/WebRTC/HEAD/.github/workflows/webrtc-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasel/WebRTC/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasel/WebRTC/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasel/WebRTC/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasel/WebRTC/HEAD/README.md -------------------------------------------------------------------------------- /WebRTC-lib.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasel/WebRTC/HEAD/WebRTC-lib.podspec -------------------------------------------------------------------------------- /WebRTC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasel/WebRTC/HEAD/WebRTC.json -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- 1 | rm -rf .cipd .gclient* depot_tools src 2 | -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasel/WebRTC/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/gn-args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasel/WebRTC/HEAD/scripts/gn-args -------------------------------------------------------------------------------- /scripts/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasel/WebRTC/HEAD/scripts/release.py --------------------------------------------------------------------------------