diff options
Diffstat (limited to 'vcpkg/ports/skia/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/skia/vcpkg.json | 216 |
1 files changed, 216 insertions, 0 deletions
diff --git a/vcpkg/ports/skia/vcpkg.json b/vcpkg/ports/skia/vcpkg.json new file mode 100644 index 0000000..34a5ed1 --- /dev/null +++ b/vcpkg/ports/skia/vcpkg.json @@ -0,0 +1,216 @@ +{ + "name": "skia", + "version": "140", + "port-version": 2, + "description": [ + "Skia is an open source 2D graphics library which provides common APIs that work across a variety of hardware and software platforms.", + "It serves as the graphics engine for Google Chrome and Chrome OS, Android, Mozilla Firefox and Firefox OS, and many other products.", + "Skia is sponsored and managed by Google, but is available for use by anyone under the BSD Free Software License. While engineering of the core components is done by the Skia development team, we consider contributions from any source." + ], + "homepage": "https://skia.org", + "license": "BSD-3-Clause", + "supports": "!(windows & arm32) & !mingw", + "dependencies": [ + "abseil", + "expat", + { + "name": "opengl", + "default-features": false, + "platform": "windows & !arm64 & !uwp" + }, + { + "name": "vcpkg-cmake-config", + "host": true + }, + { + "name": "vcpkg-cmake-get-vars", + "host": true + }, + { + "name": "vcpkg-gn", + "host": true + }, + { + "name": "vcpkg-pkgconfig-get-modules", + "host": true + }, + { + "name": "vcpkg-tool-gn", + "host": true + }, + "zlib" + ], + "default-features": [ + { + "name": "direct3d", + "platform": "uwp" + }, + { + "name": "dng", + "platform": "!bsd" + }, + { + "name": "fontconfig", + "platform": "linux | bsd" + }, + { + "name": "freetype", + "platform": "!(windows | osx | ios)" + }, + { + "name": "gl", + "platform": "!(windows & arm) & !uwp" + }, + { + "name": "harfbuzz", + "platform": "!uwp" + }, + { + "name": "icu", + "platform": "!uwp" + }, + "jpeg", + "png", + "webp" + ], + "features": { + "avif": { + "description": "AVIF support", + "dependencies": [ + "libavif" + ] + }, + "dawn": { + "description": "dawn support for skia", + "supports": "!android & !uwp", + "dependencies": [ + { + "name": "dawn", + "default-features": false, + "features": [ + "x11" + ], + "platform": "linux | bsd" + }, + { + "name": "dawn", + "platform": "osx | windows" + }, + { + "name": "skia", + "default-features": false, + "features": [ + "graphite" + ] + } + ] + }, + "direct3d": { + "description": "Direct3D support for skia", + "supports": "windows" + }, + "dng": { + "description": "Support for DNG files", + "supports": "!bsd" + }, + "fontconfig": { + "description": "Fontconfig support", + "dependencies": [ + "fontconfig", + { + "name": "skia", + "default-features": false, + "features": [ + "freetype" + ] + } + ] + }, + "freetype": { + "description": "Freetype support", + "dependencies": [ + { + "name": "dlfcn-win32", + "platform": "windows" + }, + { + "name": "freetype", + "default-features": false + } + ] + }, + "gl": { + "description": "OpenGL support for skia", + "supports": "!(windows & arm) & !uwp", + "dependencies": [ + "opengl-registry" + ] + }, + "graphite": { + "description": "Graphite support", + "dependencies": [ + { + "name": "skia", + "default-features": false, + "features": [ + "vulkan" + ] + } + ] + }, + "harfbuzz": { + "description": "Harfbuzz support", + "dependencies": [ + { + "name": "harfbuzz", + "default-features": false + }, + { + "name": "skia", + "default-features": false, + "features": [ + "icu" + ] + } + ] + }, + "icu": { + "description": "Use icu.", + "dependencies": [ + "icu" + ] + }, + "jpeg": { + "description": "Jpeg support", + "dependencies": [ + "libjpeg-turbo" + ] + }, + "metal": { + "description": "Metal support for skia", + "supports": "ios, osx" + }, + "pdf": { + "description": "PDF backend" + }, + "png": { + "description": "PNG support", + "dependencies": [ + "libpng" + ] + }, + "vulkan": { + "description": "Vulkan support for skia", + "dependencies": [ + "vulkan-headers", + "vulkan-memory-allocator" + ] + }, + "webp": { + "description": "WebP support", + "dependencies": [ + "libwebp" + ] + } + } +} |