├── .github ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── VERSION ├── config ├── android │ └── webrtc_fetch ├── ios │ └── webrtc_fetch ├── linux-arm │ └── webrtc_fetch ├── linux-arm64 │ └── webrtc_fetch ├── linux-x64 │ └── webrtc_fetch ├── macos-arm64 │ └── webrtc_fetch └── macos-x64 │ └── webrtc_fetch ├── disk_cleanup.sh ├── disk_cleanup_mac.sh ├── docker ├── .gitignore ├── Makefile ├── android │ └── Dockerfile ├── linux-arm │ └── Dockerfile ├── linux-arm64 │ └── Dockerfile └── linux-x64 │ └── Dockerfile ├── jitpack.yml ├── patch ├── 4k.patch ├── 4k_linux.patch ├── add_deps.patch ├── add_licenses.patch ├── android_use_libunwind.patch ├── android_version.patch ├── disable_use_hermetic_xcode_on_linux.patch ├── linux_clang_optional.patch ├── linux_fix_enable_safe_libstdcxx.patch ├── linux_remove_crel.patch ├── nacl_armv6_2.patch ├── windows_add_deps.patch ├── windows_fix_abseil.patch └── windows_fix_optional.patch ├── publishAar.sh └── scripts ├── apt_install.sh ├── fetch_webrtc.sh └── generate_android_version.sh /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/VERSION -------------------------------------------------------------------------------- /config/android/webrtc_fetch: -------------------------------------------------------------------------------- 1 | webrtc_android 2 | -------------------------------------------------------------------------------- /config/ios/webrtc_fetch: -------------------------------------------------------------------------------- 1 | webrtc_ios 2 | -------------------------------------------------------------------------------- /config/linux-arm/webrtc_fetch: -------------------------------------------------------------------------------- 1 | webrtc 2 | -------------------------------------------------------------------------------- /config/linux-arm64/webrtc_fetch: -------------------------------------------------------------------------------- 1 | webrtc 2 | -------------------------------------------------------------------------------- /config/linux-x64/webrtc_fetch: -------------------------------------------------------------------------------- 1 | webrtc 2 | -------------------------------------------------------------------------------- /config/macos-arm64/webrtc_fetch: -------------------------------------------------------------------------------- 1 | webrtc 2 | -------------------------------------------------------------------------------- /config/macos-x64/webrtc_fetch: -------------------------------------------------------------------------------- 1 | webrtc 2 | -------------------------------------------------------------------------------- /disk_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/disk_cleanup.sh -------------------------------------------------------------------------------- /disk_cleanup_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/disk_cleanup_mac.sh -------------------------------------------------------------------------------- /docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/docker/.gitignore -------------------------------------------------------------------------------- /docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/docker/Makefile -------------------------------------------------------------------------------- /docker/android/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/docker/android/Dockerfile -------------------------------------------------------------------------------- /docker/linux-arm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/docker/linux-arm/Dockerfile -------------------------------------------------------------------------------- /docker/linux-arm64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/docker/linux-arm64/Dockerfile -------------------------------------------------------------------------------- /docker/linux-x64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/docker/linux-x64/Dockerfile -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- 1 | install: 2 | - ./publishAar.sh 3 | -------------------------------------------------------------------------------- /patch/4k.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/patch/4k.patch -------------------------------------------------------------------------------- /patch/4k_linux.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/patch/4k_linux.patch -------------------------------------------------------------------------------- /patch/add_deps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/patch/add_deps.patch -------------------------------------------------------------------------------- /patch/add_licenses.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/patch/add_licenses.patch -------------------------------------------------------------------------------- /patch/android_use_libunwind.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/patch/android_use_libunwind.patch -------------------------------------------------------------------------------- /patch/android_version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/patch/android_version.patch -------------------------------------------------------------------------------- /patch/disable_use_hermetic_xcode_on_linux.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/patch/disable_use_hermetic_xcode_on_linux.patch -------------------------------------------------------------------------------- /patch/linux_clang_optional.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/patch/linux_clang_optional.patch -------------------------------------------------------------------------------- /patch/linux_fix_enable_safe_libstdcxx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/patch/linux_fix_enable_safe_libstdcxx.patch -------------------------------------------------------------------------------- /patch/linux_remove_crel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/patch/linux_remove_crel.patch -------------------------------------------------------------------------------- /patch/nacl_armv6_2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/patch/nacl_armv6_2.patch -------------------------------------------------------------------------------- /patch/windows_add_deps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/patch/windows_add_deps.patch -------------------------------------------------------------------------------- /patch/windows_fix_abseil.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/patch/windows_fix_abseil.patch -------------------------------------------------------------------------------- /patch/windows_fix_optional.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/patch/windows_fix_optional.patch -------------------------------------------------------------------------------- /publishAar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/publishAar.sh -------------------------------------------------------------------------------- /scripts/apt_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/scripts/apt_install.sh -------------------------------------------------------------------------------- /scripts/fetch_webrtc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/scripts/fetch_webrtc.sh -------------------------------------------------------------------------------- /scripts/generate_android_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crow-misia/libwebrtc-bin/HEAD/scripts/generate_android_version.sh --------------------------------------------------------------------------------