├── .github └── workflows │ ├── build.yaml │ └── reqcheck.yml ├── .gitignore ├── .reqcheck.yml ├── LICENSE.txt ├── PATCHES.md ├── README.md ├── ports ├── cairo │ ├── patches │ │ ├── 0001-Add-CMake-build.patch │ │ └── 0002-Rename-stat-to-stats.patch │ ├── portfile.cmake │ └── vcpkg.json ├── curl │ ├── portfile.cmake │ └── vcpkg.json ├── icu │ ├── patches │ │ ├── 0001-Add-CMake-platform.patch │ │ └── 0002-Remove-install-suffix-on-Windows.patch │ ├── pkgconfig │ │ ├── debug │ │ │ ├── icu-i18n.pc │ │ │ ├── icu-io.pc │ │ │ └── icu-uc.pc │ │ └── release │ │ │ ├── icu-i18n.pc │ │ │ ├── icu-io.pc │ │ │ └── icu-uc.pc │ ├── portfile.cmake │ └── vcpkg.json ├── openssl │ ├── portfile.cmake │ └── vcpkg.json └── zlib │ ├── portfile.cmake │ └── vcpkg.json ├── triplets └── x64-windows-webkit.cmake └── versions ├── baseline.json ├── c- ├── cairo.json └── curl.json ├── i- └── icu.json ├── o- └── openssl.json └── z- └── zlib.json /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/reqcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/.github/workflows/reqcheck.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/.gitignore -------------------------------------------------------------------------------- /.reqcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/.reqcheck.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PATCHES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/PATCHES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/README.md -------------------------------------------------------------------------------- /ports/cairo/patches/0001-Add-CMake-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/cairo/patches/0001-Add-CMake-build.patch -------------------------------------------------------------------------------- /ports/cairo/patches/0002-Rename-stat-to-stats.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/cairo/patches/0002-Rename-stat-to-stats.patch -------------------------------------------------------------------------------- /ports/cairo/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/cairo/portfile.cmake -------------------------------------------------------------------------------- /ports/cairo/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/cairo/vcpkg.json -------------------------------------------------------------------------------- /ports/curl/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/curl/portfile.cmake -------------------------------------------------------------------------------- /ports/curl/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/curl/vcpkg.json -------------------------------------------------------------------------------- /ports/icu/patches/0001-Add-CMake-platform.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/icu/patches/0001-Add-CMake-platform.patch -------------------------------------------------------------------------------- /ports/icu/patches/0002-Remove-install-suffix-on-Windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/icu/patches/0002-Remove-install-suffix-on-Windows.patch -------------------------------------------------------------------------------- /ports/icu/pkgconfig/debug/icu-i18n.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/icu/pkgconfig/debug/icu-i18n.pc -------------------------------------------------------------------------------- /ports/icu/pkgconfig/debug/icu-io.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/icu/pkgconfig/debug/icu-io.pc -------------------------------------------------------------------------------- /ports/icu/pkgconfig/debug/icu-uc.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/icu/pkgconfig/debug/icu-uc.pc -------------------------------------------------------------------------------- /ports/icu/pkgconfig/release/icu-i18n.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/icu/pkgconfig/release/icu-i18n.pc -------------------------------------------------------------------------------- /ports/icu/pkgconfig/release/icu-io.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/icu/pkgconfig/release/icu-io.pc -------------------------------------------------------------------------------- /ports/icu/pkgconfig/release/icu-uc.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/icu/pkgconfig/release/icu-uc.pc -------------------------------------------------------------------------------- /ports/icu/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/icu/portfile.cmake -------------------------------------------------------------------------------- /ports/icu/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/icu/vcpkg.json -------------------------------------------------------------------------------- /ports/openssl/portfile.cmake: -------------------------------------------------------------------------------- 1 | # Mapping openssl to libressl 2 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 3 | -------------------------------------------------------------------------------- /ports/openssl/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/openssl/vcpkg.json -------------------------------------------------------------------------------- /ports/zlib/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/zlib/portfile.cmake -------------------------------------------------------------------------------- /ports/zlib/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/ports/zlib/vcpkg.json -------------------------------------------------------------------------------- /triplets/x64-windows-webkit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/triplets/x64-windows-webkit.cmake -------------------------------------------------------------------------------- /versions/baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/versions/baseline.json -------------------------------------------------------------------------------- /versions/c-/cairo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/versions/c-/cairo.json -------------------------------------------------------------------------------- /versions/c-/curl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/versions/c-/curl.json -------------------------------------------------------------------------------- /versions/i-/icu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/versions/i-/icu.json -------------------------------------------------------------------------------- /versions/o-/openssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/versions/o-/openssl.json -------------------------------------------------------------------------------- /versions/z-/zlib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKitForWindows/WebKitRequirements/HEAD/versions/z-/zlib.json --------------------------------------------------------------------------------