8f294dde41
- Doing jobs in parallels in GHA (Divide build time by 3).
- Now use custom webrtc builds for this repo
- Windows crashes when receiving video is now fixed (thanks @cloudwebrtc)
- Now reading defines from webrtc.ninja
- Added a small create_pc test to be sure libwebrtc is working/linked correctly
- Fix MacOS builds
- Fixed Linux duplicated main build error (due to nasm)
86 lines
2.5 KiB
Batchfile
86 lines
2.5 KiB
Batchfile
@echo off
|
|
|
|
setlocal enabledelayedexpansion
|
|
|
|
set arch=
|
|
set profile=release
|
|
|
|
:arg_loop
|
|
if "%1" == "" goto end_arg_loop
|
|
if "%1" == "--arch" (
|
|
set "arch=%2"
|
|
shift & shift & goto arg_loop
|
|
)
|
|
if "%1" == "--profile" (
|
|
set "profile=%2"
|
|
shift & shift & goto arg_loop
|
|
)
|
|
echo Error: Unknown argument '%1'
|
|
exit /b 1
|
|
:end_arg_loop
|
|
|
|
if not "!arch!" == "x64" if not "!arch!" == "arm64" (
|
|
echo Error: Invalid value for --arch. Must be 'x64' or 'arm64'.
|
|
exit /b 1
|
|
)
|
|
if not "!profile!" == "debug" if not "!profile!" == "release" (
|
|
echo Error: Invalid value for --profile. Must be 'debug' or 'release'.
|
|
exit /b 1
|
|
)
|
|
|
|
echo "Building LiveKit WebRTC"
|
|
echo "Arch: !arch!"
|
|
echo "Profile: !profile!"
|
|
|
|
if not exist depot_tools (
|
|
git clone --depth 1 https://chromium.googlesource.com/chromium/tools/depot_tools.git
|
|
)
|
|
|
|
set COMMAND_DIR=%~dp0
|
|
set PATH=%cd%\depot_tools;%PATH%
|
|
set DEPOT_TOOLS_WIN_TOOLCHAIN=0
|
|
set GYP_GENERATORS=ninja,msvs-ninja
|
|
set GYP_MSVS_VERSION=2019
|
|
set OUTPUT_DIR=src\out-!arch!-!profile!
|
|
set ARTIFACTS_DIR=%cd%\win-!arch!-!profile!
|
|
set vs2019_install=C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional
|
|
|
|
if not exist src (
|
|
call gclient.bat sync -D --no-history
|
|
)
|
|
|
|
cd src
|
|
call git apply "%COMMAND_DIR%/patches/add_license_dav1d.patch" -v --ignore-space-change --ignore-whitespace --whitespace=nowarn
|
|
call git apply "%COMMAND_DIR%/patches/ssl_verify_callback_with_native_handle.patch" -v --ignore-space-change --ignore-whitespace --whitespace=nowarn
|
|
call git apply "%COMMAND_DIR%/patches/fix_mocks.patch" -v --ignore-space-change --ignore-whitespace --whitespace=nowarn
|
|
cd ..
|
|
|
|
mkdir "%ARTIFACTS_DIR%\lib"
|
|
|
|
set "debug=false"
|
|
if "!profile!" == "debug" (
|
|
set "debug=true"
|
|
)
|
|
|
|
rem generate ninja for release
|
|
call gn.bat gen %OUTPUT_DIR% --root="src" ^
|
|
--args="is_debug=!debug! is_clang=true target_cpu=\"!arch!\" use_custom_libcxx=false rtc_include_tests=false rtc_build_examples=false rtc_build_tools=false is_component_build=false rtc_enable_protobuf=false rtc_use_h264=false symbol_level=0 enable_iterator_debugging=false"
|
|
|
|
rem build
|
|
ninja.exe -C %OUTPUT_DIR% :default
|
|
|
|
rem copy static library for release build
|
|
copy "%OUTPUT_DIR%\obj\webrtc.lib" "%ARTIFACTS_DIR%\lib"
|
|
|
|
rem generate license
|
|
call python3 "%cd%\src\tools_webrtc\libs\generate_licenses.py" ^
|
|
--target :default %OUTPUT_DIR% %OUTPUT_DIR%
|
|
|
|
copy "%OUTPUT_DIR%\obj\webrtc.ninja" "%ARTIFACTS_DIR%"
|
|
copy "%OUTPUT_DIR%\args.gn" "%ARTIFACTS_DIR%"
|
|
copy "%OUTPUT_DIR%\LICENSE.md" "%ARTIFACTS_DIR%"
|
|
|
|
rem copy header
|
|
xcopy src\*.h "%ARTIFACTS_DIR%\include" /C /S /I /F /H
|
|
|