blob: 40efc76983c63bdd367012ba23b171e1ec81291d [file] [log] [blame]
#!/usr/bin/env python
#
# Copyright 2023 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""
Create the DWriteCore asset. DWriteCore is now part of the WindowsAppSDK
which is distrubuted as a nuget package. To update, go to
https://www.nuget.org/packages/Microsoft.WindowsAppSDK and pick a version.
The URL below should match that of the "Download package" link.
The asset this creates contains just the DWriteCore headers and dll. In
particular the lib is not bundled as Skia does not link directly against
DWriteCore.
"""
import argparse
import subprocess
VERSION = "1.4.230822000"
SHORT_VERSION = "1.4"
SHA256 = "7f20ada4989afb3efd885f3c26ad2b63c1b01f4b1d7bb183f5f1a7f859c566df"
URL = "https://www.nuget.org/api/v2/package/Microsoft.WindowsAppSDK/%s"
def create_asset(target_dir):
"""Create the asset."""
subprocess.check_call(["mkdir", "%s/tmp" % target_dir])
subprocess.check_call(["curl", "-L", URL % VERSION, "-o", "%s/tmp/windowsappsdk.zip" % target_dir])
output = subprocess.check_output(["sha256sum", "%s/tmp/windowsappsdk.zip" % target_dir], encoding="utf-8")
actual_hash = output.split(" ")[0]
if actual_hash != SHA256:
raise Exception("SHA256 does not match (%s != %s)" % (actual_hash, SHA256))
subprocess.check_call(["unzip", "%s/tmp/windowsappsdk.zip" % target_dir, "-d", "%s/tmp/sdk" % target_dir])
subprocess.check_call(["unzip", "%s/tmp/sdk/tools/MSIX/win10-x64/Microsoft.WindowsAppRuntime.%s.msix" % (target_dir, SHORT_VERSION), "-d", "%s/tmp/runtime" % target_dir])
subprocess.check_call(["mkdir", "%s/include" % target_dir])
subprocess.check_call(["mkdir", "%s/bin" % target_dir])
subprocess.check_call(["cp", "%s/tmp/sdk/include/dwrite.h" % target_dir, "%s/include" % target_dir])
subprocess.check_call(["cp", "%s/tmp/sdk/include/dwrite_1.h" % target_dir, "%s/include" % target_dir])
subprocess.check_call(["cp", "%s/tmp/sdk/include/dwrite_2.h" % target_dir, "%s/include" % target_dir])
subprocess.check_call(["cp", "%s/tmp/sdk/include/dwrite_3.h" % target_dir, "%s/include" % target_dir])
subprocess.check_call(["cp", "%s/tmp/sdk/include/dwrite_core.h" % target_dir, "%s/include" % target_dir])
subprocess.check_call(["cp", "%s/tmp/runtime/DWriteCore.dll" % target_dir, "%s/bin" % target_dir])
subprocess.check_call(["rm", "-rf", "%s/tmp" % target_dir])
def main():
parser = argparse.ArgumentParser()
parser.add_argument('--target_dir', '-t', required=True)
args = parser.parse_args()
create_asset(args.target_dir)
if __name__ == '__main__':
main()