From f3a536e91ae197c2be1019e3c135204453f9e8aa Mon Sep 17 00:00:00 2001 From: Zach Anderson Date: Wed, 21 Feb 2024 08:59:02 -0800 Subject: [PATCH] Shift some deps to //flutter/third_party --- DEPS | 8 +- .../flutter/third_party/googletest/BUILD.gn | 96 + .../secondary/third_party/freetype2/BUILD.gn | 7 + .../secondary/third_party/googletest/BUILD.gn | 263 +- build/secondary/third_party/harfbuzz/BUILD.gn | 11 + ci/licenses.sh | 2 +- ci/licenses_golden/excluded_files | 310 +- ci/licenses_golden/licenses_flutter | 5015 ++++++++++++++++- ci/licenses_golden/licenses_third_party | 4769 +--------------- ci/licenses_golden/tool_signature | 2 +- display_list/BUILD.gn | 6 +- flow/BUILD.gn | 4 +- fml/BUILD.gn | 3 +- impeller/golden_tests/BUILD.gn | 2 +- shell/common/BUILD.gn | 2 +- shell/platform/android/BUILD.gn | 4 +- shell/platform/android/surface/BUILD.gn | 4 +- shell/platform/fuchsia/dart_runner/BUILD.gn | 5 +- .../dart_aot_runner/BUILD.gn | 7 +- .../dart_jit_runner/BUILD.gn | 7 +- shell/platform/fuchsia/flutter/BUILD.gn | 9 +- .../tests/integration/embedder/BUILD.gn | 7 +- .../tests/integration/mouse-input/BUILD.gn | 7 +- .../tests/integration/text-input/BUILD.gn | 7 +- .../tests/integration/touch-input/BUILD.gn | 7 +- .../fuchsia/runtime/dart/utils/BUILD.gn | 3 +- skia/BUILD.gn | 2 +- skia/modules/skshaper/BUILD.gn | 2 +- testing/BUILD.gn | 6 +- third_party/tonic/tests/BUILD.gn | 2 +- third_party/txt/BUILD.gn | 5 +- tools/font_subset/BUILD.gn | 2 +- tools/licenses/lib/main.dart | 11 +- tools/licenses/lib/paths.dart | 10 +- 34 files changed, 5240 insertions(+), 5367 deletions(-) create mode 100644 build/secondary/flutter/third_party/googletest/BUILD.gn create mode 100644 build/secondary/third_party/freetype2/BUILD.gn create mode 100644 build/secondary/third_party/harfbuzz/BUILD.gn diff --git a/DEPS b/DEPS index 7dee1028db86e..a4be8e9dfb4c8 100644 --- a/DEPS +++ b/DEPS @@ -283,8 +283,8 @@ deps = { 'src/flutter/third_party/rapidjson': Var('flutter_git') + '/third_party/rapidjson' + '@' + 'ef3564c5c8824989393b87df25355baf35ff544b', - 'src/third_party/harfbuzz': - Var('flutter_git') + '/third_party/harfbuzz' + '@' + 'b61761f36e93c3f1e36c9bed0755acfa7f4e3d4f', + 'src/flutter/third_party/harfbuzz': + Var('flutter_git') + '/third_party/harfbuzz' + '@' + 'ea8f97c615f0ba17dc25013ef67dbd6bfaaa76f2', 'src/third_party/libcxx': Var('llvm_git') + '/llvm-project/libcxx' + '@' + '44079a4cc04cdeffb9cfe8067bfb3c276fb2bab0', @@ -313,7 +313,7 @@ deps = { 'src/flutter/third_party/benchmark': Var('chromium_git') + '/external/github.com/google/benchmark' + '@' + '431abd149fd76a072f821913c0340137cc755f36', - 'src/third_party/googletest': + 'src/flutter/third_party/googletest': Var('chromium_git') + '/external/github.com/google/googletest' + '@' + '7f036c5563af7d0329f20e8bb42effb04629f0c0', 'src/flutter/third_party/boringssl': @@ -628,7 +628,7 @@ deps = { 'src/flutter/third_party/expat': Var('chromium_git') + '/external/github.com/libexpat/libexpat.git' + '@' + '654d2de0da85662fcc7644a7acd7c2dd2cfb21f0', - 'src/third_party/freetype2': + 'src/flutter/third_party/freetype2': Var('flutter_git') + '/third_party/freetype2' + '@' + '3bea2761290a1cbe7d8f75c1c5a7ad727f826a66', 'src/flutter/third_party/skia': diff --git a/build/secondary/flutter/third_party/googletest/BUILD.gn b/build/secondary/flutter/third_party/googletest/BUILD.gn new file mode 100644 index 0000000000000..a19578d7bedc5 --- /dev/null +++ b/build/secondary/flutter/third_party/googletest/BUILD.gn @@ -0,0 +1,96 @@ +# Copyright 2018 The Fuchsia Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +if (is_fuchsia) { + import("//build/fuchsia/sdk.gni") +} + +config("gtest_private_config") { + visibility = [ ":*" ] + include_dirs = [ "googletest" ] +} + +config("gtest_config") { + include_dirs = [ "googletest/include" ] +} + +static_library("gtest") { + testonly = true + public = [ + "googletest/include/gtest/gtest-spi.h", + "googletest/include/gtest/gtest.h", + "googletest/include/gtest/gtest_prod.h", + ] + + # Only add the "*-all.cc" files (and no headers) to improve maintainability + # from upstream refactoring. The "*-all.cc" files include the respective + # source files. + sources = [ "googletest/src/gtest-all.cc" ] + + public_configs = [ ":gtest_config" ] + configs += [ ":gtest_private_config" ] + + if (is_fuchsia) { + if (using_fuchsia_sdk) { + deps = [ + "$fuchsia_sdk_root/pkg:fdio", + "$fuchsia_sdk_root/pkg:zx", + ] + } else { + deps = [ + "//zircon/public/lib/fdio", + "//zircon/public/lib/zx", + ] + } + } +} + +# Library that defines the FRIEND_TEST macro. +source_set("gtest_prod") { + testonly = false + public = [ "googletest/include/gtest/gtest_prod.h" ] + public_configs = [ ":gtest_config" ] +} + +static_library("gtest_main") { + testonly = true + sources = [ "googletest/src/gtest_main.cc" ] + public_deps = [ ":gtest" ] +} + +config("gmock_private_config") { + visibility = [ ":*" ] + include_dirs = [ "googlemock" ] +} + +config("gmock_config") { + include_dirs = [ "googlemock/include" ] + + cflags_cc = [ + # The MOCK_METHODn() macros do not specify "override", which triggers this + # warning in users: "error: 'Method' overrides a member function but is not + # marked 'override' [-Werror,-Winconsistent-missing-override]". Suppress + # these warnings until https://github.com/google/googletest/issues/533 is + # fixed. + "-Wno-inconsistent-missing-override", + ] +} + +static_library("gmock") { + testonly = true + public = [ "googlemock/include/gmock/gmock.h" ] + sources = [ "googlemock/src/gmock-all.cc" ] + public_configs = [ ":gmock_config" ] + configs += [ ":gmock_private_config" ] + deps = [ ":gtest" ] +} + +static_library("gmock_main") { + testonly = true + sources = [ "googlemock/src/gmock_main.cc" ] + public_deps = [ + ":gmock", + ":gtest", + ] +} diff --git a/build/secondary/third_party/freetype2/BUILD.gn b/build/secondary/third_party/freetype2/BUILD.gn new file mode 100644 index 0000000000000..630e75b95d39b --- /dev/null +++ b/build/secondary/third_party/freetype2/BUILD.gn @@ -0,0 +1,7 @@ +# Copyright 2013 The Flutter Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +group("freetype2") { + public_deps = [ "//flutter/third_party/freetype2" ] +} diff --git a/build/secondary/third_party/googletest/BUILD.gn b/build/secondary/third_party/googletest/BUILD.gn index 93e54a7fd2a2e..67aca24c07036 100644 --- a/build/secondary/third_party/googletest/BUILD.gn +++ b/build/secondary/third_party/googletest/BUILD.gn @@ -1,266 +1,13 @@ -# Copyright 2018 The Fuchsia Authors. All rights reserved. +# Copyright 2013 The Flutter Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. -if (is_fuchsia) { - import("//build/fuchsia/sdk.gni") -} - -config("gtest_private_config") { - visibility = [ ":*" ] - include_dirs = [ "googletest" ] -} - -config("gtest_config") { - include_dirs = [ "googletest/include" ] -} - -static_library("gtest") { - testonly = true - public = [ - "googletest/include/gtest/gtest-spi.h", - "googletest/include/gtest/gtest.h", - ] - - # Only add the "*-all.cc" files (and no headers) to improve maintainability - # from upstream refactoring. The "*-all.cc" files include the respective - # source files. - sources = [ "googletest/src/gtest-all.cc" ] - - public_configs = [ ":gtest_config" ] - configs += [ ":gtest_private_config" ] - - if (is_fuchsia) { - if (using_fuchsia_sdk) { - deps = [ - "$fuchsia_sdk_root/pkg:fdio", - "$fuchsia_sdk_root/pkg:zx", - ] - } else { - deps = [ - "//zircon/public/lib/fdio", - "//zircon/public/lib/zx", - ] - } - } -} - -# Library that defines the FRIEND_TEST macro. -source_set("gtest_prod") { - testonly = false - public = [ "googletest/include/gtest/gtest_prod.h" ] - public_configs = [ ":gtest_config" ] -} - -static_library("gtest_main") { - testonly = true - sources = [ "googletest/src/gtest_main.cc" ] - public_deps = [ ":gtest" ] -} - -executable("gtest_all_test") { - testonly = true - sources = [ - "googletest/test/gtest-death-test_test.cc", - "googletest/test/gtest-filepath_test.cc", - "googletest/test/gtest-linked_ptr_test.cc", - "googletest/test/gtest-message_test.cc", - "googletest/test/gtest-options_test.cc", - "googletest/test/gtest-port_test.cc", - "googletest/test/gtest-printers_test.cc", - "googletest/test/gtest-test-part_test.cc", - "googletest/test/gtest-typed-test2_test.cc", - "googletest/test/gtest-typed-test_test.cc", - "googletest/test/gtest-typed-test_test.h", - "googletest/test/gtest_main_unittest.cc", - "googletest/test/gtest_pred_impl_unittest.cc", - "googletest/test/gtest_prod_test.cc", - "googletest/test/gtest_unittest.cc", - "googletest/test/production.cc", - "googletest/test/production.h", - ] - configs += [ ":gtest_private_config" ] - deps = [ - ":gtest", - ":gtest_main", - ] -} - -executable("gtest_environment_test") { - testonly = true - sources = [ "googletest/test/gtest_environment_test.cc" ] - configs += [ ":gtest_private_config" ] - deps = [ ":gtest" ] -} - -executable("gtest_listener_test") { - testonly = true - sources = [ "googletest/test/gtest-listener_test.cc" ] - deps = [ ":gtest" ] -} - -executable("gtest_no_test") { - testonly = true - sources = [ "googletest/test/gtest_no_test_unittest.cc" ] - deps = [ ":gtest" ] -} - -executable("gtest_param_test") { - testonly = true - sources = [ - "googletest/test/gtest-param-test2_test.cc", - "googletest/test/gtest-param-test_test.cc", - "googletest/test/gtest-param-test_test.h", - ] - configs += [ ":gtest_private_config" ] - deps = [ ":gtest" ] -} - -executable("gtest_premature_exit_test") { - testonly = true - sources = [ "googletest/test/gtest_premature_exit_test.cc" ] - deps = [ ":gtest" ] -} - -executable("gtest_repeat_test") { - testonly = true - sources = [ "googletest/test/gtest_repeat_test.cc" ] - configs += [ ":gtest_private_config" ] - deps = [ ":gtest" ] -} - -executable("gtest_sole_header_test") { - testonly = true - sources = [ "googletest/test/gtest_sole_header_test.cc" ] - deps = [ - ":gtest", - ":gtest_main", - ] -} - -executable("gtest_stress_test") { - testonly = true - sources = [ "googletest/test/gtest_stress_test.cc" ] - configs += [ ":gtest_private_config" ] - deps = [ ":gtest" ] -} - -executable("gtest_unittest_api_test") { - testonly = true - sources = [ "googletest/test/gtest-unittest-api_test.cc" ] - deps = [ ":gtest" ] -} - -group("gtest_all_tests") { - testonly = true - deps = [ - ":gtest_all_test", - ":gtest_environment_test", - ":gtest_listener_test", - ":gtest_no_test", - ":gtest_param_test", - ":gtest_premature_exit_test", - ":gtest_repeat_test", - ":gtest_sole_header_test", - ":gtest_stress_test", - ":gtest_unittest_api_test", - ] -} - -config("gmock_private_config") { - visibility = [ ":*" ] - include_dirs = [ "googlemock" ] -} - -config("gmock_config") { - include_dirs = [ "googlemock/include" ] - - cflags_cc = [ - # The MOCK_METHODn() macros do not specify "override", which triggers this - # warning in users: "error: 'Method' overrides a member function but is not - # marked 'override' [-Werror,-Winconsistent-missing-override]". Suppress - # these warnings until https://github.com/google/googletest/issues/533 is - # fixed. - "-Wno-inconsistent-missing-override", - ] -} - -static_library("gmock") { - testonly = true - public = [ "googlemock/include/gmock/gmock.h" ] - sources = [ "googlemock/src/gmock-all.cc" ] - public_configs = [ ":gmock_config" ] - configs += [ ":gmock_private_config" ] - deps = [ ":gtest" ] -} - -static_library("gmock_main") { - testonly = true - sources = [ "googlemock/src/gmock_main.cc" ] - public_deps = [ - ":gmock", - ":gtest", - ] -} - -executable("gmock_all_test") { - testonly = true - sources = [ - "googlemock/test/gmock-actions_test.cc", - "googlemock/test/gmock-cardinalities_test.cc", - "googlemock/test/gmock-generated-actions_test.cc", - "googlemock/test/gmock-generated-function-mockers_test.cc", - "googlemock/test/gmock-generated-internal-utils_test.cc", - "googlemock/test/gmock-generated-matchers_test.cc", - "googlemock/test/gmock-internal-utils_test.cc", - "googlemock/test/gmock-matchers_test.cc", - "googlemock/test/gmock-more-actions_test.cc", - "googlemock/test/gmock-nice-strict_test.cc", - "googlemock/test/gmock-port_test.cc", - "googlemock/test/gmock-spec-builders_test.cc", - "googlemock/test/gmock_test.cc", - ] - configs += [ - ":gmock_private_config", - ":gtest_private_config", - ] - deps = [ - ":gmock", - ":gmock_main", - ":gtest", - ] -} - -executable("gmock_link_test") { - testonly = true - sources = [ - "googlemock/test/gmock_link2_test.cc", - "googlemock/test/gmock_link_test.cc", - "googlemock/test/gmock_link_test.h", - ] - configs += [ ":gmock_private_config" ] - deps = [ - ":gmock", - ":gmock_main", - ":gtest", - ] -} - -executable("gmock_stress_test") { +group("gmock") { testonly = true - sources = [ "googlemock/test/gmock_stress_test.cc" ] - configs += [ ":gmock_private_config" ] - deps = [ - ":gmock", - ":gtest", - ] + public_deps = [ "//flutter/third_party/googletest:gmock" ] } -group("gmock_all_tests") { +group("gtest") { testonly = true - deps = [ - ":gmock_all_test", - ":gmock_link_test", - ":gmock_stress_test", - ] + public_deps = [ "//flutter/third_party/googletest:gtest" ] } diff --git a/build/secondary/third_party/harfbuzz/BUILD.gn b/build/secondary/third_party/harfbuzz/BUILD.gn new file mode 100644 index 0000000000000..1d71a76526226 --- /dev/null +++ b/build/secondary/third_party/harfbuzz/BUILD.gn @@ -0,0 +1,11 @@ +# Copyright 2013 The Flutter Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +group("harfbuzz") { + public_deps = [ "//flutter/third_party/harfbuzz" ] +} + +group("harfbuzz_subset") { + public_deps = [ "//flutter/third_party/harfbuzz:harfbuzz_subset" ] +} diff --git a/ci/licenses.sh b/ci/licenses.sh index f0dd7f6087362..f77a3464d5403 100755 --- a/ci/licenses.sh +++ b/ci/licenses.sh @@ -162,7 +162,7 @@ function verify_licenses() ( local actualLicenseCount actualLicenseCount="$(tail -n 1 flutter/ci/licenses_golden/licenses_flutter | tr -dc '0-9')" - local expectedLicenseCount=197 # When changing this number: Update the error message below as well describing the newly expected license types. + local expectedLicenseCount=319 # When changing this number: Update the error message below as well describing the newly expected license types. if [[ $actualLicenseCount -ne $expectedLicenseCount ]]; then echo "=============================== ERROR ===============================" diff --git a/ci/licenses_golden/excluded_files b/ci/licenses_golden/excluded_files index c21cb2978ef57..c0272b2db490d 100644 --- a/ci/licenses_golden/excluded_files +++ b/ci/licenses_golden/excluded_files @@ -971,6 +971,98 @@ ../../../flutter/third_party/flatbuffers/tests ../../../flutter/third_party/flatbuffers/ts ../../../flutter/third_party/flatbuffers/typescript.bzl +../../../flutter/third_party/freetype2/.clang-format +../../../flutter/third_party/freetype2/.git +../../../flutter/third_party/freetype2/.gitignore +../../../flutter/third_party/freetype2/.gitlab-ci.yml +../../../flutter/third_party/freetype2/.gitmodules +../../../flutter/third_party/freetype2/.mailmap +../../../flutter/third_party/freetype2/CMakeLists.txt +../../../flutter/third_party/freetype2/Makefile +../../../flutter/third_party/freetype2/README +../../../flutter/third_party/freetype2/README.git +../../../flutter/third_party/freetype2/builds +../../../flutter/third_party/freetype2/docs/.gitignore +../../../flutter/third_party/freetype2/docs/CHANGES +../../../flutter/third_party/freetype2/docs/CMAKE +../../../flutter/third_party/freetype2/docs/CUSTOMIZE +../../../flutter/third_party/freetype2/docs/DEBUG +../../../flutter/third_party/freetype2/docs/DOCGUIDE +../../../flutter/third_party/freetype2/docs/GPLv2.TXT +../../../flutter/third_party/freetype2/docs/INSTALL +../../../flutter/third_party/freetype2/docs/INSTALL.ANY +../../../flutter/third_party/freetype2/docs/INSTALL.CROSS +../../../flutter/third_party/freetype2/docs/INSTALL.GNU +../../../flutter/third_party/freetype2/docs/INSTALL.MAC +../../../flutter/third_party/freetype2/docs/INSTALL.UNIX +../../../flutter/third_party/freetype2/docs/INSTALL.VMS +../../../flutter/third_party/freetype2/docs/MAKEPP +../../../flutter/third_party/freetype2/docs/PROBLEMS +../../../flutter/third_party/freetype2/docs/README +../../../flutter/third_party/freetype2/docs/TODO +../../../flutter/third_party/freetype2/docs/VERSIONS.TXT +../../../flutter/third_party/freetype2/docs/formats.txt +../../../flutter/third_party/freetype2/docs/freetype-config.1 +../../../flutter/third_party/freetype2/docs/markdown +../../../flutter/third_party/freetype2/docs/oldlogs +../../../flutter/third_party/freetype2/docs/raster.txt +../../../flutter/third_party/freetype2/docs/release +../../../flutter/third_party/freetype2/meson.build +../../../flutter/third_party/freetype2/objs/.gitignore +../../../flutter/third_party/freetype2/objs/README +../../../flutter/third_party/freetype2/src/autofit/module.mk +../../../flutter/third_party/freetype2/src/autofit/rules.mk +../../../flutter/third_party/freetype2/src/base/rules.mk +../../../flutter/third_party/freetype2/src/bdf/README +../../../flutter/third_party/freetype2/src/bdf/module.mk +../../../flutter/third_party/freetype2/src/bdf/rules.mk +../../../flutter/third_party/freetype2/src/bzip2/rules.mk +../../../flutter/third_party/freetype2/src/cache/rules.mk +../../../flutter/third_party/freetype2/src/cff/module.mk +../../../flutter/third_party/freetype2/src/cff/rules.mk +../../../flutter/third_party/freetype2/src/cid/module.mk +../../../flutter/third_party/freetype2/src/cid/rules.mk +../../../flutter/third_party/freetype2/src/dlg/rules.mk +../../../flutter/third_party/freetype2/src/gxvalid/README +../../../flutter/third_party/freetype2/src/gxvalid/module.mk +../../../flutter/third_party/freetype2/src/gxvalid/rules.mk +../../../flutter/third_party/freetype2/src/gzip/README.freetype +../../../flutter/third_party/freetype2/src/gzip/rules.mk +../../../flutter/third_party/freetype2/src/lzw/rules.mk +../../../flutter/third_party/freetype2/src/otvalid/module.mk +../../../flutter/third_party/freetype2/src/otvalid/rules.mk +../../../flutter/third_party/freetype2/src/pcf/README +../../../flutter/third_party/freetype2/src/pcf/module.mk +../../../flutter/third_party/freetype2/src/pcf/rules.mk +../../../flutter/third_party/freetype2/src/pfr/module.mk +../../../flutter/third_party/freetype2/src/pfr/rules.mk +../../../flutter/third_party/freetype2/src/psaux/module.mk +../../../flutter/third_party/freetype2/src/psaux/rules.mk +../../../flutter/third_party/freetype2/src/pshinter/module.mk +../../../flutter/third_party/freetype2/src/pshinter/rules.mk +../../../flutter/third_party/freetype2/src/psnames/module.mk +../../../flutter/third_party/freetype2/src/psnames/rules.mk +../../../flutter/third_party/freetype2/src/raster/module.mk +../../../flutter/third_party/freetype2/src/raster/rules.mk +../../../flutter/third_party/freetype2/src/sdf/module.mk +../../../flutter/third_party/freetype2/src/sdf/rules.mk +../../../flutter/third_party/freetype2/src/sfnt/module.mk +../../../flutter/third_party/freetype2/src/sfnt/rules.mk +../../../flutter/third_party/freetype2/src/smooth/module.mk +../../../flutter/third_party/freetype2/src/smooth/rules.mk +../../../flutter/third_party/freetype2/src/svg/module.mk +../../../flutter/third_party/freetype2/src/svg/rules.mk +../../../flutter/third_party/freetype2/src/tools +../../../flutter/third_party/freetype2/src/truetype/module.mk +../../../flutter/third_party/freetype2/src/truetype/rules.mk +../../../flutter/third_party/freetype2/src/type1/module.mk +../../../flutter/third_party/freetype2/src/type1/rules.mk +../../../flutter/third_party/freetype2/src/type42/module.mk +../../../flutter/third_party/freetype2/src/type42/rules.mk +../../../flutter/third_party/freetype2/src/winfonts/module.mk +../../../flutter/third_party/freetype2/src/winfonts/rules.mk +../../../flutter/third_party/freetype2/tests +../../../flutter/third_party/freetype2/vms_make.com ../../../flutter/third_party/glfw/.appveyor.yml ../../../flutter/third_party/glfw/.git ../../../flutter/third_party/glfw/.gitattributes @@ -987,6 +1079,7 @@ ../../../flutter/third_party/glfw/src/CMakeLists.txt ../../../flutter/third_party/glfw/tests ../../../flutter/third_party/gn +../../../flutter/third_party/googletest ../../../flutter/third_party/gtest-parallel/.git ../../../flutter/third_party/gtest-parallel/.gitignore ../../../flutter/third_party/gtest-parallel/CONTRIBUTING.md @@ -994,6 +1087,68 @@ ../../../flutter/third_party/gtest-parallel/gtest_parallel.py ../../../flutter/third_party/gtest-parallel/gtest_parallel_mocks.py ../../../flutter/third_party/gtest-parallel/gtest_parallel_tests.py +../../../flutter/third_party/harfbuzz/.ci/requirements.txt +../../../flutter/third_party/harfbuzz/.clang-format +../../../flutter/third_party/harfbuzz/.editorconfig +../../../flutter/third_party/harfbuzz/.git +../../../flutter/third_party/harfbuzz/.github +../../../flutter/third_party/harfbuzz/AUTHORS +../../../flutter/third_party/harfbuzz/BUILD.md +../../../flutter/third_party/harfbuzz/CMakeLists.txt +../../../flutter/third_party/harfbuzz/CONFIG.md +../../../flutter/third_party/harfbuzz/NEWS +../../../flutter/third_party/harfbuzz/README +../../../flutter/third_party/harfbuzz/README.md +../../../flutter/third_party/harfbuzz/README.mingw.md +../../../flutter/third_party/harfbuzz/README.python.md +../../../flutter/third_party/harfbuzz/RELEASING.md +../../../flutter/third_party/harfbuzz/SECURITY.md +../../../flutter/third_party/harfbuzz/TESTING.md +../../../flutter/third_party/harfbuzz/THANKS +../../../flutter/third_party/harfbuzz/docs +../../../flutter/third_party/harfbuzz/git.mk +../../../flutter/third_party/harfbuzz/m4/ax_check_link_flag.m4 +../../../flutter/third_party/harfbuzz/m4/ax_code_coverage.m4 +../../../flutter/third_party/harfbuzz/m4/ax_cxx_compile_stdcxx.m4 +../../../flutter/third_party/harfbuzz/m4/ax_pthread.m4 +../../../flutter/third_party/harfbuzz/meson.build +../../../flutter/third_party/harfbuzz/perf/README.md +../../../flutter/third_party/harfbuzz/perf/meson.build +../../../flutter/third_party/harfbuzz/replace-enum-strings.cmake +../../../flutter/third_party/harfbuzz/src/Makefile.sources +../../../flutter/third_party/harfbuzz/src/addTable.py +../../../flutter/third_party/harfbuzz/src/check-c-linkage-decls.py +../../../flutter/third_party/harfbuzz/src/check-externs.py +../../../flutter/third_party/harfbuzz/src/check-header-guards.py +../../../flutter/third_party/harfbuzz/src/check-includes.py +../../../flutter/third_party/harfbuzz/src/check-libstdc++.py +../../../flutter/third_party/harfbuzz/src/check-static-inits.py +../../../flutter/third_party/harfbuzz/src/check-symbols.py +../../../flutter/third_party/harfbuzz/src/fix_get_types.py +../../../flutter/third_party/harfbuzz/src/gen-arabic-joining-list.py +../../../flutter/third_party/harfbuzz/src/gen-arabic-pua.py +../../../flutter/third_party/harfbuzz/src/gen-arabic-table.py +../../../flutter/third_party/harfbuzz/src/gen-def.py +../../../flutter/third_party/harfbuzz/src/gen-emoji-table.py +../../../flutter/third_party/harfbuzz/src/gen-harfbuzzcc.py +../../../flutter/third_party/harfbuzz/src/gen-hb-version.py +../../../flutter/third_party/harfbuzz/src/gen-indic-table.py +../../../flutter/third_party/harfbuzz/src/gen-os2-unicode-ranges.py +../../../flutter/third_party/harfbuzz/src/gen-ragel-artifacts.py +../../../flutter/third_party/harfbuzz/src/gen-tag-table.py +../../../flutter/third_party/harfbuzz/src/gen-ucd-table.py +../../../flutter/third_party/harfbuzz/src/gen-use-table.py +../../../flutter/third_party/harfbuzz/src/gen-vowel-constraints.py +../../../flutter/third_party/harfbuzz/src/justify.py +../../../flutter/third_party/harfbuzz/src/meson.build +../../../flutter/third_party/harfbuzz/src/relative_to.py +../../../flutter/third_party/harfbuzz/src/sample.py +../../../flutter/third_party/harfbuzz/src/wasm/graphite/Makefile +../../../flutter/third_party/harfbuzz/src/wasm/sample/c/Makefile +../../../flutter/third_party/harfbuzz/subprojects/.gitignore +../../../flutter/third_party/harfbuzz/subprojects/packagefiles/ragel/meson.build +../../../flutter/third_party/harfbuzz/test +../../../flutter/third_party/harfbuzz/util ../../../flutter/third_party/imgui ../../../flutter/third_party/inja/.clang-format ../../../flutter/third_party/inja/.git @@ -2602,163 +2757,8 @@ ../../../third_party/dart/utils/OWNERS ../../../third_party/dart/utils/compiler/.gitignore ../../../third_party/dart/utils/dartanalyzer/.gitignore -../../../third_party/freetype2/.clang-format -../../../third_party/freetype2/.git -../../../third_party/freetype2/.gitignore -../../../third_party/freetype2/.gitlab-ci.yml -../../../third_party/freetype2/.gitmodules -../../../third_party/freetype2/.mailmap -../../../third_party/freetype2/CMakeLists.txt -../../../third_party/freetype2/Makefile -../../../third_party/freetype2/README -../../../third_party/freetype2/README.git -../../../third_party/freetype2/builds -../../../third_party/freetype2/docs/.gitignore -../../../third_party/freetype2/docs/CHANGES -../../../third_party/freetype2/docs/CMAKE -../../../third_party/freetype2/docs/CUSTOMIZE -../../../third_party/freetype2/docs/DEBUG -../../../third_party/freetype2/docs/DOCGUIDE -../../../third_party/freetype2/docs/GPLv2.TXT -../../../third_party/freetype2/docs/INSTALL -../../../third_party/freetype2/docs/INSTALL.ANY -../../../third_party/freetype2/docs/INSTALL.CROSS -../../../third_party/freetype2/docs/INSTALL.GNU -../../../third_party/freetype2/docs/INSTALL.MAC -../../../third_party/freetype2/docs/INSTALL.UNIX -../../../third_party/freetype2/docs/INSTALL.VMS -../../../third_party/freetype2/docs/MAKEPP -../../../third_party/freetype2/docs/PROBLEMS -../../../third_party/freetype2/docs/README -../../../third_party/freetype2/docs/TODO -../../../third_party/freetype2/docs/VERSIONS.TXT -../../../third_party/freetype2/docs/formats.txt -../../../third_party/freetype2/docs/freetype-config.1 -../../../third_party/freetype2/docs/markdown -../../../third_party/freetype2/docs/oldlogs -../../../third_party/freetype2/docs/raster.txt -../../../third_party/freetype2/docs/release -../../../third_party/freetype2/meson.build -../../../third_party/freetype2/objs/.gitignore -../../../third_party/freetype2/objs/README -../../../third_party/freetype2/src/autofit/module.mk -../../../third_party/freetype2/src/autofit/rules.mk -../../../third_party/freetype2/src/base/rules.mk -../../../third_party/freetype2/src/bdf/README -../../../third_party/freetype2/src/bdf/module.mk -../../../third_party/freetype2/src/bdf/rules.mk -../../../third_party/freetype2/src/bzip2/rules.mk -../../../third_party/freetype2/src/cache/rules.mk -../../../third_party/freetype2/src/cff/module.mk -../../../third_party/freetype2/src/cff/rules.mk -../../../third_party/freetype2/src/cid/module.mk -../../../third_party/freetype2/src/cid/rules.mk -../../../third_party/freetype2/src/dlg/rules.mk -../../../third_party/freetype2/src/gxvalid/README -../../../third_party/freetype2/src/gxvalid/module.mk -../../../third_party/freetype2/src/gxvalid/rules.mk -../../../third_party/freetype2/src/gzip/README.freetype -../../../third_party/freetype2/src/gzip/rules.mk -../../../third_party/freetype2/src/lzw/rules.mk -../../../third_party/freetype2/src/otvalid/module.mk -../../../third_party/freetype2/src/otvalid/rules.mk -../../../third_party/freetype2/src/pcf/README -../../../third_party/freetype2/src/pcf/module.mk -../../../third_party/freetype2/src/pcf/rules.mk -../../../third_party/freetype2/src/pfr/module.mk -../../../third_party/freetype2/src/pfr/rules.mk -../../../third_party/freetype2/src/psaux/module.mk -../../../third_party/freetype2/src/psaux/rules.mk -../../../third_party/freetype2/src/pshinter/module.mk -../../../third_party/freetype2/src/pshinter/rules.mk -../../../third_party/freetype2/src/psnames/module.mk -../../../third_party/freetype2/src/psnames/rules.mk -../../../third_party/freetype2/src/raster/module.mk -../../../third_party/freetype2/src/raster/rules.mk -../../../third_party/freetype2/src/sdf/module.mk -../../../third_party/freetype2/src/sdf/rules.mk -../../../third_party/freetype2/src/sfnt/module.mk -../../../third_party/freetype2/src/sfnt/rules.mk -../../../third_party/freetype2/src/smooth/module.mk -../../../third_party/freetype2/src/smooth/rules.mk -../../../third_party/freetype2/src/svg/module.mk -../../../third_party/freetype2/src/svg/rules.mk -../../../third_party/freetype2/src/tools -../../../third_party/freetype2/src/truetype/module.mk -../../../third_party/freetype2/src/truetype/rules.mk -../../../third_party/freetype2/src/type1/module.mk -../../../third_party/freetype2/src/type1/rules.mk -../../../third_party/freetype2/src/type42/module.mk -../../../third_party/freetype2/src/type42/rules.mk -../../../third_party/freetype2/src/winfonts/module.mk -../../../third_party/freetype2/src/winfonts/rules.mk -../../../third_party/freetype2/tests -../../../third_party/freetype2/vms_make.com ../../../third_party/google_fonts_for_unit_tests -../../../third_party/googletest ../../../third_party/gradle -../../../third_party/harfbuzz/.ci/requirements.txt -../../../third_party/harfbuzz/.clang-format -../../../third_party/harfbuzz/.editorconfig -../../../third_party/harfbuzz/.git -../../../third_party/harfbuzz/.github -../../../third_party/harfbuzz/AUTHORS -../../../third_party/harfbuzz/BUILD.md -../../../third_party/harfbuzz/CMakeLists.txt -../../../third_party/harfbuzz/CONFIG.md -../../../third_party/harfbuzz/NEWS -../../../third_party/harfbuzz/README -../../../third_party/harfbuzz/README.md -../../../third_party/harfbuzz/README.mingw.md -../../../third_party/harfbuzz/README.python.md -../../../third_party/harfbuzz/RELEASING.md -../../../third_party/harfbuzz/SECURITY.md -../../../third_party/harfbuzz/TESTING.md -../../../third_party/harfbuzz/THANKS -../../../third_party/harfbuzz/docs -../../../third_party/harfbuzz/git.mk -../../../third_party/harfbuzz/m4/ax_check_link_flag.m4 -../../../third_party/harfbuzz/m4/ax_code_coverage.m4 -../../../third_party/harfbuzz/m4/ax_cxx_compile_stdcxx.m4 -../../../third_party/harfbuzz/m4/ax_pthread.m4 -../../../third_party/harfbuzz/meson.build -../../../third_party/harfbuzz/perf/README.md -../../../third_party/harfbuzz/perf/meson.build -../../../third_party/harfbuzz/replace-enum-strings.cmake -../../../third_party/harfbuzz/src/Makefile.sources -../../../third_party/harfbuzz/src/addTable.py -../../../third_party/harfbuzz/src/check-c-linkage-decls.py -../../../third_party/harfbuzz/src/check-externs.py -../../../third_party/harfbuzz/src/check-header-guards.py -../../../third_party/harfbuzz/src/check-includes.py -../../../third_party/harfbuzz/src/check-libstdc++.py -../../../third_party/harfbuzz/src/check-static-inits.py -../../../third_party/harfbuzz/src/check-symbols.py -../../../third_party/harfbuzz/src/fix_get_types.py -../../../third_party/harfbuzz/src/gen-arabic-joining-list.py -../../../third_party/harfbuzz/src/gen-arabic-pua.py -../../../third_party/harfbuzz/src/gen-arabic-table.py -../../../third_party/harfbuzz/src/gen-def.py -../../../third_party/harfbuzz/src/gen-emoji-table.py -../../../third_party/harfbuzz/src/gen-harfbuzzcc.py -../../../third_party/harfbuzz/src/gen-hb-version.py -../../../third_party/harfbuzz/src/gen-indic-table.py -../../../third_party/harfbuzz/src/gen-os2-unicode-ranges.py -../../../third_party/harfbuzz/src/gen-ragel-artifacts.py -../../../third_party/harfbuzz/src/gen-tag-table.py -../../../third_party/harfbuzz/src/gen-ucd-table.py -../../../third_party/harfbuzz/src/gen-use-table.py -../../../third_party/harfbuzz/src/gen-vowel-constraints.py -../../../third_party/harfbuzz/src/justify.py -../../../third_party/harfbuzz/src/meson.build -../../../third_party/harfbuzz/src/relative_to.py -../../../third_party/harfbuzz/src/sample.py -../../../third_party/harfbuzz/src/wasm/graphite/Makefile -../../../third_party/harfbuzz/src/wasm/sample/c/Makefile -../../../third_party/harfbuzz/subprojects/.gitignore -../../../third_party/harfbuzz/subprojects/packagefiles/ragel/meson.build -../../../third_party/harfbuzz/test -../../../third_party/harfbuzz/util ../../../third_party/icu/.git ../../../third_party/icu/DIR_METADATA ../../../third_party/icu/OWNERS diff --git a/ci/licenses_golden/licenses_flutter b/ci/licenses_golden/licenses_flutter index 8e2c1a0f81175..d287ed8733f88 100644 --- a/ci/licenses_golden/licenses_flutter +++ b/ci/licenses_golden/licenses_flutter @@ -1891,6 +1891,47 @@ copied and put under another distribution licence [including the GNU Public Licence.] ==================================================================================================== +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/src/gzip/zlib.h +TYPE: LicenseType.zlib +FILE: ../../../flutter/third_party/freetype2/src/gzip/adler32.c +FILE: ../../../flutter/third_party/freetype2/src/gzip/crc32.c +FILE: ../../../flutter/third_party/freetype2/src/gzip/crc32.h +FILE: ../../../flutter/third_party/freetype2/src/gzip/ftzconf.h +FILE: ../../../flutter/third_party/freetype2/src/gzip/gzguts.h +FILE: ../../../flutter/third_party/freetype2/src/gzip/infback.c +FILE: ../../../flutter/third_party/freetype2/src/gzip/inffast.c +FILE: ../../../flutter/third_party/freetype2/src/gzip/inffast.h +FILE: ../../../flutter/third_party/freetype2/src/gzip/inffixed.h +FILE: ../../../flutter/third_party/freetype2/src/gzip/inflate.c +FILE: ../../../flutter/third_party/freetype2/src/gzip/inflate.h +FILE: ../../../flutter/third_party/freetype2/src/gzip/inftrees.c +FILE: ../../../flutter/third_party/freetype2/src/gzip/inftrees.h +FILE: ../../../flutter/third_party/freetype2/src/gzip/patches/freetype-zlib.diff +FILE: ../../../flutter/third_party/freetype2/src/gzip/zlib.h +FILE: ../../../flutter/third_party/freetype2/src/gzip/zutil.c +FILE: ../../../flutter/third_party/freetype2/src/gzip/zutil.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + ==================================================================================================== LIBRARY: glfw ORIGIN: ../../../flutter/third_party/glfw/src/mappings.h @@ -1920,6 +1961,146 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. ==================================================================================================== +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/src/pcf/pcf.h +TYPE: LicenseType.mit +FILE: ../../../flutter/third_party/freetype2/src/pcf/pcf.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000, 2001, 2002, 2003, 2006, 2010 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/src/pcf/pcfdrivr.c +TYPE: LicenseType.mit +FILE: ../../../flutter/third_party/freetype2/src/pcf/pcfdrivr.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2004, 2006-2011, 2013, 2014 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/src/bdf/bdf.c +TYPE: LicenseType.mit +FILE: ../../../flutter/third_party/freetype2/src/bdf/bdf.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001, 2002 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/src/bdf/bdfdrivr.h +TYPE: LicenseType.mit +FILE: ../../../flutter/third_party/freetype2/src/bdf/bdfdrivr.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001, 2002, 2003, 2004 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/src/bdf/bdfdrivr.c +TYPE: LicenseType.mit +FILE: ../../../flutter/third_party/freetype2/src/bdf/bdfdrivr.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2008, 2011, 2013, 2014 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + ==================================================================================================== LIBRARY: libjpeg-turbo ORIGIN: ../../../flutter/third_party/libjpeg-turbo/src/simd/jsimd_arm64_neon.S @@ -1983,6 +2164,39 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. ==================================================================================================== +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-gobject-enums.cc.tmpl +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-gobject-structs.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-gobject.h +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-gobject-enums.cc.tmpl +FILE: ../../../flutter/third_party/harfbuzz/src/hb-gobject-structs.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-gobject.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2011 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + ==================================================================================================== LIBRARY: include ORIGIN: ../../../flutter/third_party/inja/third_party/include/hayai/hayai_clock.hpp @@ -1994,6 +2208,56 @@ Copyright (C) 2013 Vlad Lazarenko Copyright (C) 2014 Nicolas Pauss ==================================================================================================== +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ucd.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ucd.cc +---------------------------------------------------------------------------------------------------- +Copyright (C) 2012 Grigori Goronzy + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-gobject-enums.h.tmpl +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-gobject-enums.h.tmpl +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + ==================================================================================================== LIBRARY: libjpeg-turbo ORIGIN: ../../../flutter/third_party/libjpeg-turbo/src/simd/jsimd_mips_dspr2_asm.h @@ -7554,40 +7818,70 @@ SOFTWARE. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../flutter/third_party/boringssl/src/ssl/bio_ssl.cc (with ../../../flutter/third_party/boringssl/src/LICENSE) -TYPE: LicenseType.unknown -FILE: ../../../flutter/third_party/boringssl/src/ssl/bio_ssl.cc +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/ms-use/COPYING +TYPE: LicenseType.mit +FILE: ../../../flutter/third_party/harfbuzz/src/ms-use/IndicPositionalCategory-Additional.txt +FILE: ../../../flutter/third_party/harfbuzz/src/ms-use/IndicShapingInvalidCluster.txt +FILE: ../../../flutter/third_party/harfbuzz/src/ms-use/IndicSyllabicCategory-Additional.txt ---------------------------------------------------------------------------------------------------- -Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright (c) Microsoft Corporation. -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/x509v3/v3_ocsp.c (with ../../../flutter/third_party/boringssl/src/LICENSE) +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/src/pcf/pcfutil.c TYPE: LicenseType.unknown -FILE: ../../../flutter/third_party/boringssl/src/crypto/x509v3/v3_ocsp.c +FILE: ../../../flutter/third_party/freetype2/src/pcf/pcfutil.c ---------------------------------------------------------------------------------------------------- -Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 1990, 1994, 1998 The Open Group -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of The Open Group shall not be +used in advertising or otherwise to promote the sale, use or other dealings +in this Software without prior written authorization from The Open Group. ==================================================================================================== ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/evp/scrypt_tests.txt (with ../../../flutter/third_party/boringssl/src/LICENSE) +ORIGIN: ../../../flutter/third_party/boringssl/src/ssl/bio_ssl.cc (with ../../../flutter/third_party/boringssl/src/LICENSE) TYPE: LicenseType.unknown -FILE: ../../../flutter/third_party/boringssl/src/crypto/evp/scrypt_tests.txt +FILE: ../../../flutter/third_party/boringssl/src/ssl/bio_ssl.cc ---------------------------------------------------------------------------------------------------- -Copyright 2001-2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. Licensed under the OpenSSL license (the "License"). You may not use this file except in compliance with the License. You can obtain a copy @@ -7596,82 +7890,337 @@ https://www.openssl.org/source/license.html ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/bn/internal.h -ORIGIN: ../../../flutter/third_party/boringssl/src/include/openssl/bn.h -TYPE: LicenseType.unknown -FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/bn/internal.h -FILE: ../../../flutter/third_party/boringssl/src/include/openssl/bn.h +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/src/bdf/bdf.h +TYPE: LicenseType.mit +FILE: ../../../flutter/third_party/freetype2/src/bdf/bdf.h ---------------------------------------------------------------------------------------------------- -Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2004, 2011 Francesco Zappa Nardelli -Portions of the attached software ("Contribution") are developed by -SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: -The Contribution is licensed pursuant to the Eric Young open source -license provided above. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT +OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/ec.c -ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/ec_key.c -ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/ec_montgomery.c -ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/internal.h -ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/oct.c -ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/simple.c -ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/wnaf.c -ORIGIN: ../../../flutter/third_party/boringssl/src/include/openssl/ec.h -ORIGIN: ../../../flutter/third_party/boringssl/src/include/openssl/ec_key.h -ORIGIN: ../../../flutter/third_party/boringssl/src/include/openssl/tls1.h -ORIGIN: ../../../flutter/third_party/boringssl/src/ssl/handshake_client.cc -ORIGIN: ../../../flutter/third_party/boringssl/src/ssl/handshake_server.cc -ORIGIN: ../../../flutter/third_party/boringssl/src/ssl/s3_lib.cc -TYPE: LicenseType.unknown -FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/ec.c -FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/ec_key.c -FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/ec_montgomery.c -FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/internal.h -FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/oct.c -FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/simple.c -FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/wnaf.c -FILE: ../../../flutter/third_party/boringssl/src/include/openssl/ec.h -FILE: ../../../flutter/third_party/boringssl/src/include/openssl/ec_key.h -FILE: ../../../flutter/third_party/boringssl/src/include/openssl/tls1.h -FILE: ../../../flutter/third_party/boringssl/src/ssl/handshake_client.cc -FILE: ../../../flutter/third_party/boringssl/src/ssl/handshake_server.cc -FILE: ../../../flutter/third_party/boringssl/src/ssl/s3_lib.cc +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/src/bdf/bdflib.c +TYPE: LicenseType.mit +FILE: ../../../flutter/third_party/freetype2/src/bdf/bdflib.c ---------------------------------------------------------------------------------------------------- -Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2014 + Francesco Zappa Nardelli -Portions of the attached software ("Contribution") are developed by -SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: -The Contribution is licensed pursuant to the OpenSSL open source -license provided above. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT +OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/ecdh_extra/ecdh_extra.c + ../../../flutter/third_party/boringssl/src/crypto/ecdh_extra/ecdh_extra.c -ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ecdh/ecdh.c + ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ecdh/ecdh.c -ORIGIN: ../../../flutter/third_party/boringssl/src/include/openssl/ecdh.h + ../../../flutter/third_party/boringssl/src/include/openssl/ecdh.h -TYPE: LicenseType.bsd -FILE: ../../../flutter/third_party/boringssl/src/crypto/ecdh_extra/ecdh_extra.c -FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ecdh/ecdh.c -FILE: ../../../flutter/third_party/boringssl/src/include/openssl/ecdh.h +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/include/freetype/internal/fthash.h +ORIGIN: ../../../flutter/third_party/freetype2/src/base/fthash.c +TYPE: LicenseType.mit +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/fthash.h +FILE: ../../../flutter/third_party/freetype2/src/base/fthash.c ---------------------------------------------------------------------------------------------------- -Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2015 + Francesco Zappa Nardelli -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT +OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/src/pcf/pcfutil.h +TYPE: LicenseType.mit +FILE: ../../../flutter/third_party/freetype2/src/pcf/pcfutil.h +---------------------------------------------------------------------------------------------------- +Copyright 2000, 2001, 2004 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/src/pcf/pcfdrivr.h +TYPE: LicenseType.mit +FILE: ../../../flutter/third_party/freetype2/src/pcf/pcfdrivr.h +---------------------------------------------------------------------------------------------------- +Copyright 2000-2001, 2002 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/src/pcf/pcf.c +TYPE: LicenseType.mit +FILE: ../../../flutter/third_party/freetype2/src/pcf/pcf.c +---------------------------------------------------------------------------------------------------- +Copyright 2000-2001, 2003 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/src/pcf/pcfread.c +TYPE: LicenseType.mit +FILE: ../../../flutter/third_party/freetype2/src/pcf/pcfread.c +---------------------------------------------------------------------------------------------------- +Copyright 2000-2010, 2012-2014 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/x509v3/v3_ocsp.c (with ../../../flutter/third_party/boringssl/src/LICENSE) +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/boringssl/src/crypto/x509v3/v3_ocsp.c +---------------------------------------------------------------------------------------------------- +Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/src/bdf/bdferror.h +TYPE: LicenseType.mit +FILE: ../../../flutter/third_party/freetype2/src/bdf/bdferror.h +---------------------------------------------------------------------------------------------------- +Copyright 2001, 2002, 2012 Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT +OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/evp/scrypt_tests.txt (with ../../../flutter/third_party/boringssl/src/LICENSE) +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/boringssl/src/crypto/evp/scrypt_tests.txt +---------------------------------------------------------------------------------------------------- +Copyright 2001-2017 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/bn/internal.h +ORIGIN: ../../../flutter/third_party/boringssl/src/include/openssl/bn.h +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/bn/internal.h +FILE: ../../../flutter/third_party/boringssl/src/include/openssl/bn.h +---------------------------------------------------------------------------------------------------- +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + +Portions of the attached software ("Contribution") are developed by +SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. + +The Contribution is licensed pursuant to the Eric Young open source +license provided above. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/ec.c +ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/ec_key.c +ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/ec_montgomery.c +ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/internal.h +ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/oct.c +ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/simple.c +ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/wnaf.c +ORIGIN: ../../../flutter/third_party/boringssl/src/include/openssl/ec.h +ORIGIN: ../../../flutter/third_party/boringssl/src/include/openssl/ec_key.h +ORIGIN: ../../../flutter/third_party/boringssl/src/include/openssl/tls1.h +ORIGIN: ../../../flutter/third_party/boringssl/src/ssl/handshake_client.cc +ORIGIN: ../../../flutter/third_party/boringssl/src/ssl/handshake_server.cc +ORIGIN: ../../../flutter/third_party/boringssl/src/ssl/s3_lib.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/ec.c +FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/ec_key.c +FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/ec_montgomery.c +FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/internal.h +FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/oct.c +FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/simple.c +FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ec/wnaf.c +FILE: ../../../flutter/third_party/boringssl/src/include/openssl/ec.h +FILE: ../../../flutter/third_party/boringssl/src/include/openssl/ec_key.h +FILE: ../../../flutter/third_party/boringssl/src/include/openssl/tls1.h +FILE: ../../../flutter/third_party/boringssl/src/ssl/handshake_client.cc +FILE: ../../../flutter/third_party/boringssl/src/ssl/handshake_server.cc +FILE: ../../../flutter/third_party/boringssl/src/ssl/s3_lib.cc +---------------------------------------------------------------------------------------------------- +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + +Portions of the attached software ("Contribution") are developed by +SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. + +The Contribution is licensed pursuant to the OpenSSL open source +license provided above. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/ecdh_extra/ecdh_extra.c + ../../../flutter/third_party/boringssl/src/crypto/ecdh_extra/ecdh_extra.c +ORIGIN: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ecdh/ecdh.c + ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ecdh/ecdh.c +ORIGIN: ../../../flutter/third_party/boringssl/src/include/openssl/ecdh.h + ../../../flutter/third_party/boringssl/src/include/openssl/ecdh.h +TYPE: LicenseType.bsd +FILE: ../../../flutter/third_party/boringssl/src/crypto/ecdh_extra/ecdh_extra.c +FILE: ../../../flutter/third_party/boringssl/src/crypto/fipsmodule/ecdh/ecdh.c +FILE: ../../../flutter/third_party/boringssl/src/include/openssl/ecdh.h +---------------------------------------------------------------------------------------------------- +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. @@ -7746,6 +8295,34 @@ ECDH support in OpenSSL originally developed by SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. ==================================================================================================== +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/src/pcf/pcfread.h +TYPE: LicenseType.mit +FILE: ../../../flutter/third_party/freetype2/src/pcf/pcfread.h +---------------------------------------------------------------------------------------------------- +Copyright 2003 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + ==================================================================================================== LIBRARY: boringssl ORIGIN: ../../../flutter/third_party/boringssl/src/include/openssl/ssl.h (with ../../../flutter/third_party/boringssl/src/LICENSE) @@ -15374,62 +15951,3584 @@ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../flutter/third_party/boringssl/src/ssl/d1_srtp.cc +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-buffer.h TYPE: LicenseType.unknown -FILE: ../../../flutter/third_party/boringssl/src/ssl/d1_srtp.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-buffer.h ---------------------------------------------------------------------------------------------------- -DTLS code by Eric Rescorla +Copyright © 1998-2004 David Turner and Werner Lemberg +Copyright © 2004,2007,2009 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. -Copyright (C) 2006, Network Resonance, Inc. -Copyright (C) 2011, RTFM, Inc. +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== ==================================================================================================== -LIBRARY: engine -ORIGIN: ../../../flutter/runtime/test_font_data.cc +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-buffer.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-buffer.hh TYPE: LicenseType.unknown -FILE: ../../../flutter/runtime/test_font_data.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-buffer.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-buffer.hh ---------------------------------------------------------------------------------------------------- -License for the Ahem font embedded below is from: -https://www.w3.org/Style/CSS/Test/Fonts/Ahem/COPYING - -The Ahem font in this directory belongs to the public domain. In -jurisdictions that do not recognize public domain ownership of these -files, the following Creative Commons Zero declaration applies: - - +Copyright © 1998-2004 David Turner and Werner Lemberg +Copyright © 2004,2007,2009,2010 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. -which is quoted below: +This is part of HarfBuzz, a text shaping library. - The person who has associated a work with this document (the "Work") - affirms that he or she (the "Affirmer") is the/an author or owner of - the Work. The Work may be any work of authorship, including a - database. +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. - The Affirmer hereby fully, permanently and irrevocably waives and - relinquishes all of her or his copyright and related or neighboring - legal rights in the Work available under any federal or state law, - treaty or contract, including but not limited to moral rights, - publicity and privacy rights, rights protecting against unfair - competition and any rights protecting the extraction, dissemination - and reuse of data, whether such rights are present or future, vested - or contingent (the "Waiver"). The Affirmer makes the Waiver for the - benefit of the public at large and to the detriment of the Affirmer's - heirs or successors. +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. - The Affirmer understands and intends that the Waiver has the effect - of eliminating and entirely removing from the Affirmer's control all - the copyright and related or neighboring legal rights previously held - by the Affirmer in the Work, to that extent making the Work freely - available to the public for any and all uses and purposes without - restriction of any kind, including commercial use and uses in media - and formats or by methods that have not yet been invented or - conceived. Should the Waiver for any reason be judged legally - ineffective in any jurisdiction, the Affirmer hereby grants a free, - full, permanent, irrevocable, nonexclusive and worldwide license for - all her or his copyright and related or neighboring legal rights in - the Work. +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout.cc +---------------------------------------------------------------------------------------------------- +Copyright © 1998-2004 David Turner and Werner Lemberg +Copyright © 2006 Behdad Esfahbod +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-atomic.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-mutex.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-object.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-atomic.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-mutex.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-object.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007 Chris Wilson +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout.h +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout.h +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009 Red Hat, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GDEF/GDEF.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout-gdef-table.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GDEF/GDEF.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout-gdef-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2010,2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/OT/Layout/Common/Coverage.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/OT/Layout/Common/CoverageFormat1.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/OT/Layout/Common/CoverageFormat2.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/OT/Layout/Common/RangeRecord.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/OT/Layout/types.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout-common.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/Common/Coverage.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/Common/CoverageFormat1.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/Common/CoverageFormat2.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/Common/RangeRecord.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/types.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout-common.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2010,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-common.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-common.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-open-file.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-open-file.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-face.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-face.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-face-table-list.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-face-table-list.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012,2013 Google, Inc. +Copyright © 2019, Facebook Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/main.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/main.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2018,2019,2020 Ebrahim Byagowi +Copyright © 2018 Khaled Hosny + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout-gsubgpos.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout-gsubgpos.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2010,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout-gpos-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout-gsub-table.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout-gpos-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout-gsub-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2010,2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-open-type.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-open-type.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-dispatch.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-machinery.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-sanitize.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-dispatch.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-machinery.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-sanitize.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2012,2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-serialize.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-serialize.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2012,2018 Google, Inc. +Copyright © 2019 Facebook, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-blob.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-face.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-font.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb.h +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-blob.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-face.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-font.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb.h +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-icu.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-icu.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2009 Keith Stribley +Copyright © 2011 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ft.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ft.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2009 Keith Stribley +Copyright © 2015 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-unicode.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-unicode.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-unicode.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-unicode.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2011 Codethink Limited +Copyright © 2010,2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-unicode.h +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-unicode.h +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2011 Codethink Limited +Copyright © 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-face.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-font.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-glib.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-glib.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-icu.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-tag.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-face.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-font.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-glib.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-glib.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-icu.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-tag.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2011 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-face-builder.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-face.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-font.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-shape.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-shape.h +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-face-builder.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-face.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-font.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-shape.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-shape.h +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ft.h +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ft.h +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2015 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-blob.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-blob.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-blob.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-blob.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shape.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shape.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2010,2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-map.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-map.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2010,2011,2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-aat-map.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-map.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-aat-map.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-map.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2010,2011,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-common.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-common.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shape.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shape.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2010 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-head-table.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-head-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2010 Red Hat, Inc. +Copyright © 2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-gpos-size-params.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-gsub-get-alternates.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-gsub-would-substitute.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/test-gpos-size-params.cc +FILE: ../../../flutter/third_party/harfbuzz/src/test-gsub-get-alternates.cc +FILE: ../../../flutter/third_party/harfbuzz/src/test-gsub-would-substitute.cc +FILE: ../../../flutter/third_party/harfbuzz/src/test.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2010,2011 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2010,2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-buffer-serialize.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/test-buffer-serialize.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2010,2011,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-arabic.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-default.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-hebrew.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-thai.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-arabic.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-default.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-hebrew.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-thai.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2010,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-fallback-shape.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-gobject-structs.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-uniscribe.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-version.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-version.h.in +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-wasm-shape.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-fallback-shape.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-gobject-structs.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-uniscribe.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-version.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-version.h.in +FILE: ../../../flutter/third_party/harfbuzz/src/hb-wasm-shape.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2011 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-graphite2.h +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-graphite2.h +---------------------------------------------------------------------------------------------------- +Copyright © 2011 Martin Hosken +Copyright © 2011 SIL International + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-graphite2.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-graphite2.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2011 Martin Hosken +Copyright © 2011 SIL International +Copyright © 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/OT/name/name.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-hhea-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-hmtx-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-maxp-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-name-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shape-fallback.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shape-normalize.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-indic-machine.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-indic-machine.rl +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-indic.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-khmer-machine.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-khmer-machine.rl +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-khmer.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-myanmar-machine.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-myanmar-machine.rl +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/OT/name/name.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-hhea-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-hmtx-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-maxp-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-name-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shape-fallback.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shape-normalize.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-indic-machine.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-indic-machine.rl +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-indic.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-khmer-machine.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-khmer-machine.rl +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-khmer.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-myanmar-machine.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-myanmar-machine.rl +---------------------------------------------------------------------------------------------------- +Copyright © 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-os2-table.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-os2-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2011,2012 Google, Inc. +Copyright © 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-myanmar.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-uniscribe.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-myanmar.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-uniscribe.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2011,2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ms-feature-ranges.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ms-feature-ranges.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2011,2012,2013 Google, Inc. +Copyright © 2021 Khaled Hosny + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-utf.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-utf.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2011,2012,2014 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-font.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-font.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2011,2014 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-cache.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shape-fallback.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shape-normalize.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-arabic-fallback.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-indic.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-set-digest.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-set.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-set.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-shape-plan.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-shape-plan.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-shaper-impl.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-shaper-list.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-shaper.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-shaper.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-cache.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shape-fallback.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shape-normalize.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-arabic-fallback.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-indic.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-set-digest.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-set.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-set.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-shape-plan.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-shape-plan.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-shaper-impl.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-shaper-list.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-shaper.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-shaper.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-coretext.h +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-coretext.h +---------------------------------------------------------------------------------------------------- +Copyright © 2012 Mozilla Foundation. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-buffer-serialize.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-buffer-serialize.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-coretext.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-coretext.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2012,2013 Mozilla Foundation. +Copyright © 2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-bit-page.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-bit-set-invertible.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-bit-set.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-set.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-bit-page.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-bit-set-invertible.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-bit-set.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-set.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2012,2017 Google, Inc. +Copyright © 2021 Behdad Esfahbod + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-shape-plan.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-shape-plan.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2012,2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-buffer-deserialize-json.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-buffer-deserialize-json.rl +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-buffer-deserialize-text-glyphs.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-buffer-deserialize-text-glyphs.rl +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-buffer-deserialize-text-unicode.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-buffer-deserialize-text-unicode.rl +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-deprecated.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout-jstf-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-hangul.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-buffer-deserialize-json.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-buffer-deserialize-json.rl +FILE: ../../../flutter/third_party/harfbuzz/src/hb-buffer-deserialize-text-glyphs.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-buffer-deserialize-text-glyphs.rl +FILE: ../../../flutter/third_party/harfbuzz/src/hb-buffer-deserialize-text-unicode.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-buffer-deserialize-text-unicode.rl +FILE: ../../../flutter/third_party/harfbuzz/src/hb-deprecated.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout-jstf-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-hangul.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shape.h +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shape.h +---------------------------------------------------------------------------------------------------- +Copyright © 2013 Red Hat, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-cmap-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-font.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-arabic-win1256.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-cmap-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-font.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-arabic-win1256.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2014 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-glyf-table.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-glyf-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2015 Google, Inc. +Copyright © 2019 Adobe Inc. +Copyright © 2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-arabic.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-use-machine.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-use-machine.rl +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-use.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-arabic.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-use-machine.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-use-machine.rl +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-use.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2015 Mozilla Foundation. +Copyright © 2015 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-directwrite.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-directwrite.h +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-directwrite.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-directwrite.h +---------------------------------------------------------------------------------------------------- +Copyright © 2015-2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout-base-table.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-layout-base-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2016 Elie Roux +Copyright © 2018 Google, Inc. +Copyright © 2018-2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/OT/Color/CBDT/CBDT.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-post-table.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Color/CBDT/CBDT.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-post-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2016 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/OT/Color/CPAL/CPAL.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-color.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Color/CPAL/CPAL.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-color.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2016 Google, Inc. +Copyright © 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-color.h +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-color.h +---------------------------------------------------------------------------------------------------- +Copyright © 2016 Google, Inc. +Copyright © 2018 Khaled Hosny +Copyright © 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-math-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-math.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-math.h +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-math-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-math.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-math.h +---------------------------------------------------------------------------------------------------- +Copyright © 2016 Igalia S.L. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-common.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-morx-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-debug.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-kern.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-kern-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-post-macroman.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-var-avar-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-var-fvar-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-var-hvar-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-var-mvar-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-var.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-var.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-string-array.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-common.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-morx-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-debug.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-kern.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-kern-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-post-macroman.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-var-avar-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-var-fvar-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-var-hvar-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-var-mvar-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-var.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-var.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-string-array.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2017 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2017 Google, Inc. +Copyright © 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-algs.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-algs.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2017 Google, Inc. +Copyright © 2019 Facebook, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-vector.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-vector.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2017,2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/OT/Color/svg/svg.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-ankr-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-bsln-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-feat-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-just-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-aat-ltag-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-aat.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-gasp-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-metrics.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-metrics.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-stat-table.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Color/svg/svg.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-ankr-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-bsln-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-feat-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-just-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-aat-ltag-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-aat.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-gasp-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-metrics.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-metrics.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-stat-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-kerx-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-trak-table.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-kerx-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-trak-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2018 Ebrahim Byagowi +Copyright © 2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/OT/Color/COLR/COLR.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/OT/Color/COLR/colrv1-closure.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/OT/Color/sbix/sbix.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Color/COLR/COLR.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Color/COLR/colrv1-closure.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Color/sbix/sbix.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2018 Ebrahim Byagowi +Copyright © 2020 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-name.h +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-name.h +---------------------------------------------------------------------------------------------------- +Copyright © 2018 Ebrahim Byagowi. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-aat-map.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-array.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-map.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-map.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-map.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-meta.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-null.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-deprecated.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-face.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-hdmx-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-name-language-static.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-name-language.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-name.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-os2-unicode-ranges.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-vowel-constraints.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-static.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-subset-input.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-subset-input.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-subset-plan.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-subset-plan.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-subset.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-subset.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-subset.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-iter.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-ot-name.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-unicode-ranges.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-aat-map.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-array.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-map.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-map.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-map.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-meta.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-null.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-deprecated.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-face.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-hdmx-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-name-language-static.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-name-language.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-name.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-os2-unicode-ranges.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-vowel-constraints.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-static.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-subset-input.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-subset-input.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-subset-plan.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-subset-plan.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-subset.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-subset.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-subset.hh +FILE: ../../../flutter/third_party/harfbuzz/src/test-iter.cc +FILE: ../../../flutter/third_party/harfbuzz/src/test-ot-name.cc +FILE: ../../../flutter/third_party/harfbuzz/src/test-unicode-ranges.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-iter.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-iter.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2018 Google, Inc. +Copyright © 2019 Facebook, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-subset-plan-member-list.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-subset-plan-member-list.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2018 Google, Inc. +Copyright © 2023 Behdad Esfahbod + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-cff-interp-common.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-cff-interp-cs-common.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-cff-interp-dict-common.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-cff1-interp-cs.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-cff2-interp-cs.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-cff-common.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-cff1-table.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-cff1-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-cff2-table.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-cff2-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-vorg-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-subset-cff-common.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-subset-cff-common.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-subset-cff1.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-subset-cff2.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-cff-interp-common.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-cff-interp-cs-common.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-cff-interp-dict-common.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-cff1-interp-cs.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-cff2-interp-cs.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-cff-common.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-cff1-table.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-cff1-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-cff2-table.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-cff2-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-vorg-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-subset-cff-common.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-subset-cff-common.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-subset-cff1.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-subset-cff2.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2018 Adobe Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-metrics.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-metrics.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2018-2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-var-gvar-table.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-var-gvar-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2019 Adobe Inc. +Copyright © 2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-cff1-std-str.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-bimap.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-ot-glyphname.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-cff1-std-str.hh +FILE: ../../../flutter/third_party/harfbuzz/src/test-bimap.cc +FILE: ../../../flutter/third_party/harfbuzz/src/test-ot-glyphname.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2019 Adobe, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-opbd-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-gdi.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-gdi.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-number-parser.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-number-parser.rl +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-number.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-number.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-meta-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-meta.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-meta.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-style.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-style.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-number.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-ot-meta.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-aat-layout-opbd-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-gdi.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-gdi.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-number-parser.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-number-parser.rl +FILE: ../../../flutter/third_party/harfbuzz/src/hb-number.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-number.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-meta-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-meta.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-meta.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-style.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-style.h +FILE: ../../../flutter/third_party/harfbuzz/src/test-number.cc +FILE: ../../../flutter/third_party/harfbuzz/src/test-ot-meta.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-config.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-pool.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-algs.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-config.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-pool.hh +FILE: ../../../flutter/third_party/harfbuzz/src/test-algs.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2019 Facebook, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-bimap.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-bimap.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2019 Adobe Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-draw.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-draw.h +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-draw.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-draw.h +---------------------------------------------------------------------------------------------------- +Copyright © 2019-2020 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/failing-alloc.c +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-draw.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/failing-alloc.c +FILE: ../../../flutter/third_party/harfbuzz/src/hb-draw.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2020 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-priority-queue.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-repacker.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-array.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-item-varstore.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-priority-queue.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-repacker.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-tuple-varstore.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-priority-queue.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-repacker.hh +FILE: ../../../flutter/third_party/harfbuzz/src/test-array.cc +FILE: ../../../flutter/third_party/harfbuzz/src/test-item-varstore.cc +FILE: ../../../flutter/third_party/harfbuzz/src/test-priority-queue.cc +FILE: ../../../flutter/third_party/harfbuzz/src/test-repacker.cc +FILE: ../../../flutter/third_party/harfbuzz/src/test-tuple-varstore.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2020 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-map.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-set.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-vector.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/test-map.cc +FILE: ../../../flutter/third_party/harfbuzz/src/test-set.cc +FILE: ../../../flutter/third_party/harfbuzz/src/test-vector.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2021 Behdad Esfahbod + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-syllabic.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-syllabic.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-syllabic.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-syllabic.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2021 Behdad Esfahbod. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-post-table-v2subset.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-var-common.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-post-table-v2subset.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-var-common.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2021 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-buffer-verify.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ft-colr.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-limits.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-multimap.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-machinery.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-multimap.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-serialize.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-buffer-verify.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ft-colr.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-limits.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-multimap.hh +FILE: ../../../flutter/third_party/harfbuzz/src/test-machinery.cc +FILE: ../../../flutter/third_party/harfbuzz/src/test-multimap.cc +FILE: ../../../flutter/third_party/harfbuzz/src/test-serialize.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2022 Behdad Esfahbod + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/graph/classdef-graph.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/graph/coverage-graph.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/graph/graph.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/graph/gsubgpos-context.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/graph/gsubgpos-context.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/graph/gsubgpos-graph.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/graph/markbasepos-graph.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/graph/pairpos-graph.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/graph/serialize.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/graph/split-helpers.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/graph/test-classdef-graph.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-subset-accelerator.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-subset-repacker.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-subset-repacker.h +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/graph/classdef-graph.hh +FILE: ../../../flutter/third_party/harfbuzz/src/graph/coverage-graph.hh +FILE: ../../../flutter/third_party/harfbuzz/src/graph/graph.hh +FILE: ../../../flutter/third_party/harfbuzz/src/graph/gsubgpos-context.cc +FILE: ../../../flutter/third_party/harfbuzz/src/graph/gsubgpos-context.hh +FILE: ../../../flutter/third_party/harfbuzz/src/graph/gsubgpos-graph.hh +FILE: ../../../flutter/third_party/harfbuzz/src/graph/markbasepos-graph.hh +FILE: ../../../flutter/third_party/harfbuzz/src/graph/pairpos-graph.hh +FILE: ../../../flutter/third_party/harfbuzz/src/graph/serialize.hh +FILE: ../../../flutter/third_party/harfbuzz/src/graph/split-helpers.hh +FILE: ../../../flutter/third_party/harfbuzz/src/graph/test-classdef-graph.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-subset-accelerator.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-subset-repacker.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-subset-repacker.h +---------------------------------------------------------------------------------------------------- +Copyright © 2022 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-cairo-utils.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-cairo-utils.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2022 Red Hat, Inc + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-cairo-utils.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-cairo-utils.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2022 Red Hat, Inc +Copyright © 2021, 2022 Black Foundry + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-cairo.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-cairo.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2022 Red Hat, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-cplusplus.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-paint-extents.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-paint-extents.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-cplusplus.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-paint-extents.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-paint-extents.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2022 Behdad Esfahbod + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-paint.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-paint.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-paint.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-paint.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-paint.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-paint.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2022 Matthias Clasen + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-cairo.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-features.h.in +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-cairo.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-features.h.in +---------------------------------------------------------------------------------------------------- +Copyright © 2022 Red Hat, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-outline.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-subset-instancer-solver.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-subset-instancer-solver.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api-blob.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api-buffer.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api-common.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api-face.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api-font.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api-list.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api-shape.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api.cc +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api.h +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api.hh +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-outline.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-subset-instancer-solver.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-subset-instancer-solver.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api-blob.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api-buffer.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api-common.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api-face.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api-font.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api-list.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api-shape.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api.h +FILE: ../../../flutter/third_party/harfbuzz/src/hb-wasm-api.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2023 Behdad Esfahbod + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-outline.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-outline.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2023 Behdad Esfahbod +Copyright © 1999 David Turner +Copyright © 2005 Werner Lemberg +Copyright © 2013-2015 Alexei Podtelezhnikov + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/src/hb-ot-var-cvar-table.hh +ORIGIN: ../../../flutter/third_party/harfbuzz/src/test-subset-instancer-solver.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-var-cvar-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/test-subset-instancer-solver.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2023 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../flutter/third_party/boringssl/src/ssl/d1_srtp.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/boringssl/src/ssl/d1_srtp.cc +---------------------------------------------------------------------------------------------------- +DTLS code by Eric Rescorla + +Copyright (C) 2006, Network Resonance, Inc. +Copyright (C) 2011, RTFM, Inc. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../flutter/third_party/harfbuzz/COPYING +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/harfbuzz/.ci/requirements-fonttools.in +FILE: ../../../flutter/third_party/harfbuzz/.ci/requirements-fonttools.txt +FILE: ../../../flutter/third_party/harfbuzz/.ci/requirements.in +FILE: ../../../flutter/third_party/harfbuzz/.ci/win32-cross-file.txt +FILE: ../../../flutter/third_party/harfbuzz/.ci/win64-cross-file.txt +FILE: ../../../flutter/third_party/harfbuzz/.circleci/config.yml +FILE: ../../../flutter/third_party/harfbuzz/.codecov.yml +FILE: ../../../flutter/third_party/harfbuzz/harfbuzz.doap +FILE: ../../../flutter/third_party/harfbuzz/meson_options.txt +FILE: ../../../flutter/third_party/harfbuzz/perf/benchmark-font.cc +FILE: ../../../flutter/third_party/harfbuzz/perf/benchmark-map.cc +FILE: ../../../flutter/third_party/harfbuzz/perf/benchmark-ot.cc +FILE: ../../../flutter/third_party/harfbuzz/perf/benchmark-set.cc +FILE: ../../../flutter/third_party/harfbuzz/perf/benchmark-shape.cc +FILE: ../../../flutter/third_party/harfbuzz/perf/benchmark-subset.cc +FILE: ../../../flutter/third_party/harfbuzz/perf/fonts/Amiri-Regular.ttf +FILE: ../../../flutter/third_party/harfbuzz/perf/fonts/NotoNastaliqUrdu-Regular.ttf +FILE: ../../../flutter/third_party/harfbuzz/perf/fonts/Roboto-Regular.ttf +FILE: ../../../flutter/third_party/harfbuzz/perf/texts/duployan.txt +FILE: ../../../flutter/third_party/harfbuzz/perf/texts/en-thelittleprince.txt +FILE: ../../../flutter/third_party/harfbuzz/perf/texts/en-words.txt +FILE: ../../../flutter/third_party/harfbuzz/perf/texts/fa-thelittleprince.txt +FILE: ../../../flutter/third_party/harfbuzz/perf/texts/fa-words.txt +FILE: ../../../flutter/third_party/harfbuzz/perf/texts/hi-words.txt +FILE: ../../../flutter/third_party/harfbuzz/src/ArabicPUASimplified.txt +FILE: ../../../flutter/third_party/harfbuzz/src/ArabicPUATraditional.txt +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/Anchor.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/AnchorFormat1.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/AnchorFormat2.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/AnchorFormat3.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/AnchorMatrix.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/ChainContextPos.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/Common.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/ContextPos.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/CursivePos.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/CursivePosFormat1.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/ExtensionPos.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/GPOS.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/LigatureArray.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/MarkArray.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/MarkBasePos.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/MarkBasePosFormat1.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/MarkLigPos.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/MarkLigPosFormat1.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/MarkMarkPos.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/MarkMarkPosFormat1.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/MarkRecord.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/PairPos.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/PairPosFormat1.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/PairPosFormat2.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/PairSet.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/PairValueRecord.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/PosLookup.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/PosLookupSubTable.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/SinglePos.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/SinglePosFormat1.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/SinglePosFormat2.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GPOS/ValueFormat.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/AlternateSet.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/AlternateSubst.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/AlternateSubstFormat1.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/ChainContextSubst.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/Common.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/ContextSubst.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/ExtensionSubst.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/GSUB.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/Ligature.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/LigatureSet.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/LigatureSubst.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/LigatureSubstFormat1.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/MultipleSubst.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/MultipleSubstFormat1.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubst.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/Sequence.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/SingleSubst.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/SingleSubstFormat1.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/SingleSubstFormat2.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/SubstLookup.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/Layout/GSUB/SubstLookupSubTable.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/glyf/CompositeGlyph.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/glyf/Glyph.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/glyf/GlyphHeader.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/glyf/SimpleGlyph.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/glyf/SubsetGlyph.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/glyf/VarCompositeGlyph.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/glyf/composite-iter.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/glyf/coord-setter.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/glyf/glyf-helpers.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/glyf/glyf.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/glyf/loca.hh +FILE: ../../../flutter/third_party/harfbuzz/src/OT/glyf/path-builder.hh +FILE: ../../../flutter/third_party/harfbuzz/src/harfbuzz-cairo.pc.in +FILE: ../../../flutter/third_party/harfbuzz/src/harfbuzz-config.cmake.in +FILE: ../../../flutter/third_party/harfbuzz/src/harfbuzz-gobject.pc.in +FILE: ../../../flutter/third_party/harfbuzz/src/harfbuzz-icu.pc.in +FILE: ../../../flutter/third_party/harfbuzz/src/harfbuzz-subset.cc +FILE: ../../../flutter/third_party/harfbuzz/src/harfbuzz-subset.pc.in +FILE: ../../../flutter/third_party/harfbuzz/src/harfbuzz.cc +FILE: ../../../flutter/third_party/harfbuzz/src/harfbuzz.pc.in +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-arabic-joining-list.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-arabic-pua.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-arabic-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-indic-table.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-use-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-shaper-vowel-constraints.cc +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ot-tag-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/hb-ucd-table.hh +FILE: ../../../flutter/third_party/harfbuzz/src/test-use-table.cc +FILE: ../../../flutter/third_party/harfbuzz/src/wasm/graphite/shape.cc +FILE: ../../../flutter/third_party/harfbuzz/src/wasm/rust/harfbuzz-wasm/Cargo.toml +FILE: ../../../flutter/third_party/harfbuzz/src/wasm/sample/c/shape-fallback.cc +FILE: ../../../flutter/third_party/harfbuzz/src/wasm/sample/c/shape-ot.cc +FILE: ../../../flutter/third_party/harfbuzz/src/wasm/sample/c/test.ttf +FILE: ../../../flutter/third_party/harfbuzz/src/wasm/sample/rust/hello-wasm/Cargo.toml +FILE: ../../../flutter/third_party/harfbuzz/src/wasm/sample/rust/hello-wasm/src/lib.rs +FILE: ../../../flutter/third_party/harfbuzz/subprojects/cairo.wrap +FILE: ../../../flutter/third_party/harfbuzz/subprojects/freetype2.wrap +FILE: ../../../flutter/third_party/harfbuzz/subprojects/glib.wrap +FILE: ../../../flutter/third_party/harfbuzz/subprojects/google-benchmark.wrap +FILE: ../../../flutter/third_party/harfbuzz/subprojects/ragel.wrap +---------------------------------------------------------------------------------------------------- +HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. +For parts of HarfBuzz that are licensed under different licenses see individual +files names COPYING in subdirectories where applicable. + +Copyright © 2010-2022 Google, Inc. +Copyright © 2015-2020 Ebrahim Byagowi +Copyright © 2019,2020 Facebook, Inc. +Copyright © 2012,2015 Mozilla Foundation +Copyright © 2011 Codethink Limited +Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) +Copyright © 2009 Keith Stribley +Copyright © 2011 Martin Hosken and SIL International +Copyright © 2007 Chris Wilson +Copyright © 2005,2006,2020,2021,2022,2023 Behdad Esfahbod +Copyright © 2004,2007,2008,2009,2010,2013,2021,2022,2023 Red Hat, Inc. +Copyright © 1998-2005 David Turner and Werner Lemberg +Copyright © 2016 Igalia S.L. +Copyright © 2022 Matthias Clasen +Copyright © 2018,2021 Khaled Hosny +Copyright © 2018,2019,2020 Adobe, Inc +Copyright © 2013-2015 Alexei Podtelezhnikov + +For full copyright notices consult the individual files in the package. + + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: engine +ORIGIN: ../../../flutter/runtime/test_font_data.cc +TYPE: LicenseType.unknown +FILE: ../../../flutter/runtime/test_font_data.cc +---------------------------------------------------------------------------------------------------- +License for the Ahem font embedded below is from: +https://www.w3.org/Style/CSS/Test/Fonts/Ahem/COPYING + +The Ahem font in this directory belongs to the public domain. In +jurisdictions that do not recognize public domain ownership of these +files, the following Creative Commons Zero declaration applies: + + + +which is quoted below: + + The person who has associated a work with this document (the "Work") + affirms that he or she (the "Affirmer") is the/an author or owner of + the Work. The Work may be any work of authorship, including a + database. + + The Affirmer hereby fully, permanently and irrevocably waives and + relinquishes all of her or his copyright and related or neighboring + legal rights in the Work available under any federal or state law, + treaty or contract, including but not limited to moral rights, + publicity and privacy rights, rights protecting against unfair + competition and any rights protecting the extraction, dissemination + and reuse of data, whether such rights are present or future, vested + or contingent (the "Waiver"). The Affirmer makes the Waiver for the + benefit of the public at large and to the detriment of the Affirmer's + heirs or successors. + + The Affirmer understands and intends that the Waiver has the effect + of eliminating and entirely removing from the Affirmer's control all + the copyright and related or neighboring legal rights previously held + by the Affirmer in the Work, to that extent making the Work freely + available to the public for any and all uses and purposes without + restriction of any kind, including commercial use and uses in media + and formats or by methods that have not yet been invented or + conceived. Should the Waiver for any reason be judged legally + ineffective in any jurisdiction, the Affirmer hereby grants a free, + full, permanent, irrevocable, nonexclusive and worldwide license for + all her or his copyright and related or neighboring legal rights in + the Work. ==================================================================================================== ==================================================================================================== @@ -16107,6 +20206,629 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/docs/FTL.TXT +TYPE: LicenseType.freetype +FILE: ../../../flutter/third_party/freetype2/devel/ft2build.h +FILE: ../../../flutter/third_party/freetype2/devel/ftoption.h +FILE: ../../../flutter/third_party/freetype2/include/freetype-flutter-config/freetype/config/public-macros.h +FILE: ../../../flutter/third_party/freetype2/include/freetype-flutter-config/ftmodule.h +FILE: ../../../flutter/third_party/freetype2/include/freetype-flutter-config/ftoption.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/config/ftconfig.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/config/ftheader.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/config/ftmodule.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/config/ftoption.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/config/ftstdlib.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/config/integer-types.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/config/mac-support.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/config/public-macros.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/freetype.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftadvanc.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftbbox.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftbdf.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftbitmap.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftbzip2.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftcache.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftchapters.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftcid.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftcolor.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftdriver.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/fterrdef.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/fterrors.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftfntfmt.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftgasp.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftglyph.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftgxval.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftgzip.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftimage.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftincrem.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftlcdfil.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftlist.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftlogging.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftlzw.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftmac.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftmm.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftmodapi.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftmoderr.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftotval.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftoutln.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftparams.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftpfr.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftrender.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftsizes.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftsnames.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftstroke.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftsynth.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftsystem.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/fttrigon.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/fttypes.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ftwinfnt.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/autohint.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/cffotypes.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/cfftypes.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/compiler-macros.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/ftcalc.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/ftdebug.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/ftdrv.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/ftgloadr.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/ftmemory.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/ftobjs.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/ftpsprop.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/ftrfork.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/ftserv.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/ftstream.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/fttrace.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/ftvalid.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/psaux.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/pshints.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svbdf.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svcfftl.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svcid.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svfntfmt.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svgldict.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svgxval.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svkern.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svmetric.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svmm.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svotval.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svpfr.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svpostnm.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svprop.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svpscmap.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svpsinfo.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svsfnt.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svttcmap.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svtteng.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svttglyf.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/services/svwinfnt.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/sfnt.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/svginterface.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/t1types.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/tttypes.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/internal/wofftypes.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/otsvg.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/t1tables.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/ttnameid.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/tttables.h +FILE: ../../../flutter/third_party/freetype2/include/freetype/tttags.h +FILE: ../../../flutter/third_party/freetype2/include/ft2build.h +FILE: ../../../flutter/third_party/freetype2/meson_options.txt +FILE: ../../../flutter/third_party/freetype2/modules.cfg +FILE: ../../../flutter/third_party/freetype2/src/autofit/afblue.c +FILE: ../../../flutter/third_party/freetype2/src/autofit/afblue.cin +FILE: ../../../flutter/third_party/freetype2/src/autofit/afblue.dat +FILE: ../../../flutter/third_party/freetype2/src/autofit/afblue.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/afblue.hin +FILE: ../../../flutter/third_party/freetype2/src/autofit/afcjk.c +FILE: ../../../flutter/third_party/freetype2/src/autofit/afcjk.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/afcover.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/afdummy.c +FILE: ../../../flutter/third_party/freetype2/src/autofit/afdummy.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/aferrors.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/afglobal.c +FILE: ../../../flutter/third_party/freetype2/src/autofit/afglobal.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/afhints.c +FILE: ../../../flutter/third_party/freetype2/src/autofit/afhints.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/afindic.c +FILE: ../../../flutter/third_party/freetype2/src/autofit/afindic.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/aflatin.c +FILE: ../../../flutter/third_party/freetype2/src/autofit/aflatin.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/afloader.c +FILE: ../../../flutter/third_party/freetype2/src/autofit/afloader.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/afmodule.c +FILE: ../../../flutter/third_party/freetype2/src/autofit/afmodule.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/afranges.c +FILE: ../../../flutter/third_party/freetype2/src/autofit/afranges.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/afscript.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/afshaper.c +FILE: ../../../flutter/third_party/freetype2/src/autofit/afshaper.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/afstyles.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/aftypes.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/afws-decl.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/afws-iter.h +FILE: ../../../flutter/third_party/freetype2/src/autofit/autofit.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftadvanc.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftbase.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftbase.h +FILE: ../../../flutter/third_party/freetype2/src/base/ftbbox.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftbdf.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftbitmap.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftcalc.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftcid.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftcolor.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftdbgmem.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftdebug.c +FILE: ../../../flutter/third_party/freetype2/src/base/fterrors.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftfntfmt.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftfstype.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftgasp.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftgloadr.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftglyph.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftgxval.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftinit.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftlcdfil.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftmac.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftmm.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftobjs.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftotval.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftoutln.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftpatent.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftpfr.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftpsprop.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftrfork.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftsnames.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftstream.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftstroke.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftsynth.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftsystem.c +FILE: ../../../flutter/third_party/freetype2/src/base/fttrigon.c +FILE: ../../../flutter/third_party/freetype2/src/base/fttype1.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftutil.c +FILE: ../../../flutter/third_party/freetype2/src/base/ftver.rc +FILE: ../../../flutter/third_party/freetype2/src/base/ftwinfnt.c +FILE: ../../../flutter/third_party/freetype2/src/bzip2/ftbzip2.c +FILE: ../../../flutter/third_party/freetype2/src/cache/ftcache.c +FILE: ../../../flutter/third_party/freetype2/src/cache/ftcbasic.c +FILE: ../../../flutter/third_party/freetype2/src/cache/ftccache.c +FILE: ../../../flutter/third_party/freetype2/src/cache/ftccache.h +FILE: ../../../flutter/third_party/freetype2/src/cache/ftccback.h +FILE: ../../../flutter/third_party/freetype2/src/cache/ftccmap.c +FILE: ../../../flutter/third_party/freetype2/src/cache/ftcerror.h +FILE: ../../../flutter/third_party/freetype2/src/cache/ftcglyph.c +FILE: ../../../flutter/third_party/freetype2/src/cache/ftcglyph.h +FILE: ../../../flutter/third_party/freetype2/src/cache/ftcimage.c +FILE: ../../../flutter/third_party/freetype2/src/cache/ftcimage.h +FILE: ../../../flutter/third_party/freetype2/src/cache/ftcmanag.c +FILE: ../../../flutter/third_party/freetype2/src/cache/ftcmanag.h +FILE: ../../../flutter/third_party/freetype2/src/cache/ftcmru.c +FILE: ../../../flutter/third_party/freetype2/src/cache/ftcmru.h +FILE: ../../../flutter/third_party/freetype2/src/cache/ftcsbits.c +FILE: ../../../flutter/third_party/freetype2/src/cache/ftcsbits.h +FILE: ../../../flutter/third_party/freetype2/src/cff/cff.c +FILE: ../../../flutter/third_party/freetype2/src/cff/cffcmap.c +FILE: ../../../flutter/third_party/freetype2/src/cff/cffcmap.h +FILE: ../../../flutter/third_party/freetype2/src/cff/cffdrivr.c +FILE: ../../../flutter/third_party/freetype2/src/cff/cffdrivr.h +FILE: ../../../flutter/third_party/freetype2/src/cff/cfferrs.h +FILE: ../../../flutter/third_party/freetype2/src/cff/cffgload.c +FILE: ../../../flutter/third_party/freetype2/src/cff/cffgload.h +FILE: ../../../flutter/third_party/freetype2/src/cff/cffload.c +FILE: ../../../flutter/third_party/freetype2/src/cff/cffload.h +FILE: ../../../flutter/third_party/freetype2/src/cff/cffobjs.c +FILE: ../../../flutter/third_party/freetype2/src/cff/cffobjs.h +FILE: ../../../flutter/third_party/freetype2/src/cff/cffparse.c +FILE: ../../../flutter/third_party/freetype2/src/cff/cffparse.h +FILE: ../../../flutter/third_party/freetype2/src/cff/cfftoken.h +FILE: ../../../flutter/third_party/freetype2/src/cid/ciderrs.h +FILE: ../../../flutter/third_party/freetype2/src/cid/cidgload.c +FILE: ../../../flutter/third_party/freetype2/src/cid/cidgload.h +FILE: ../../../flutter/third_party/freetype2/src/cid/cidload.c +FILE: ../../../flutter/third_party/freetype2/src/cid/cidload.h +FILE: ../../../flutter/third_party/freetype2/src/cid/cidobjs.c +FILE: ../../../flutter/third_party/freetype2/src/cid/cidobjs.h +FILE: ../../../flutter/third_party/freetype2/src/cid/cidparse.c +FILE: ../../../flutter/third_party/freetype2/src/cid/cidparse.h +FILE: ../../../flutter/third_party/freetype2/src/cid/cidriver.c +FILE: ../../../flutter/third_party/freetype2/src/cid/cidriver.h +FILE: ../../../flutter/third_party/freetype2/src/cid/cidtoken.h +FILE: ../../../flutter/third_party/freetype2/src/cid/type1cid.c +FILE: ../../../flutter/third_party/freetype2/src/dlg/dlgwrap.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvalid.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvalid.h +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvbsln.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvcommn.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvcommn.h +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxverror.h +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvfeat.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvfeat.h +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvfgen.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvjust.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvkern.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvlcar.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvmod.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvmod.h +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvmort.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvmort.h +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvmort0.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvmort1.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvmort2.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvmort4.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvmort5.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvmorx.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvmorx.h +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvmorx0.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvmorx1.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvmorx2.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvmorx4.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvmorx5.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvopbd.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvprop.c +FILE: ../../../flutter/third_party/freetype2/src/gxvalid/gxvtrak.c +FILE: ../../../flutter/third_party/freetype2/src/gzip/ftgzip.c +FILE: ../../../flutter/third_party/freetype2/src/lzw/ftlzw.c +FILE: ../../../flutter/third_party/freetype2/src/lzw/ftzopen.c +FILE: ../../../flutter/third_party/freetype2/src/lzw/ftzopen.h +FILE: ../../../flutter/third_party/freetype2/src/otvalid/otvalid.c +FILE: ../../../flutter/third_party/freetype2/src/otvalid/otvalid.h +FILE: ../../../flutter/third_party/freetype2/src/otvalid/otvbase.c +FILE: ../../../flutter/third_party/freetype2/src/otvalid/otvcommn.c +FILE: ../../../flutter/third_party/freetype2/src/otvalid/otvcommn.h +FILE: ../../../flutter/third_party/freetype2/src/otvalid/otverror.h +FILE: ../../../flutter/third_party/freetype2/src/otvalid/otvgdef.c +FILE: ../../../flutter/third_party/freetype2/src/otvalid/otvgpos.c +FILE: ../../../flutter/third_party/freetype2/src/otvalid/otvgpos.h +FILE: ../../../flutter/third_party/freetype2/src/otvalid/otvgsub.c +FILE: ../../../flutter/third_party/freetype2/src/otvalid/otvjstf.c +FILE: ../../../flutter/third_party/freetype2/src/otvalid/otvmath.c +FILE: ../../../flutter/third_party/freetype2/src/otvalid/otvmod.c +FILE: ../../../flutter/third_party/freetype2/src/otvalid/otvmod.h +FILE: ../../../flutter/third_party/freetype2/src/pcf/pcferror.h +FILE: ../../../flutter/third_party/freetype2/src/pfr/pfr.c +FILE: ../../../flutter/third_party/freetype2/src/pfr/pfrcmap.c +FILE: ../../../flutter/third_party/freetype2/src/pfr/pfrcmap.h +FILE: ../../../flutter/third_party/freetype2/src/pfr/pfrdrivr.c +FILE: ../../../flutter/third_party/freetype2/src/pfr/pfrdrivr.h +FILE: ../../../flutter/third_party/freetype2/src/pfr/pfrerror.h +FILE: ../../../flutter/third_party/freetype2/src/pfr/pfrgload.c +FILE: ../../../flutter/third_party/freetype2/src/pfr/pfrgload.h +FILE: ../../../flutter/third_party/freetype2/src/pfr/pfrload.c +FILE: ../../../flutter/third_party/freetype2/src/pfr/pfrload.h +FILE: ../../../flutter/third_party/freetype2/src/pfr/pfrobjs.c +FILE: ../../../flutter/third_party/freetype2/src/pfr/pfrobjs.h +FILE: ../../../flutter/third_party/freetype2/src/pfr/pfrsbit.c +FILE: ../../../flutter/third_party/freetype2/src/pfr/pfrsbit.h +FILE: ../../../flutter/third_party/freetype2/src/pfr/pfrtypes.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/afmparse.c +FILE: ../../../flutter/third_party/freetype2/src/psaux/afmparse.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/cffdecode.c +FILE: ../../../flutter/third_party/freetype2/src/psaux/cffdecode.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/psarrst.c +FILE: ../../../flutter/third_party/freetype2/src/psaux/psarrst.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/psaux.c +FILE: ../../../flutter/third_party/freetype2/src/psaux/psauxerr.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/psauxmod.c +FILE: ../../../flutter/third_party/freetype2/src/psaux/psauxmod.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/psblues.c +FILE: ../../../flutter/third_party/freetype2/src/psaux/psblues.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/psconv.c +FILE: ../../../flutter/third_party/freetype2/src/psaux/psconv.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/pserror.c +FILE: ../../../flutter/third_party/freetype2/src/psaux/pserror.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/psfixed.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/psfont.c +FILE: ../../../flutter/third_party/freetype2/src/psaux/psfont.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/psft.c +FILE: ../../../flutter/third_party/freetype2/src/psaux/psft.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/psglue.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/pshints.c +FILE: ../../../flutter/third_party/freetype2/src/psaux/pshints.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/psintrp.c +FILE: ../../../flutter/third_party/freetype2/src/psaux/psintrp.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/psobjs.c +FILE: ../../../flutter/third_party/freetype2/src/psaux/psobjs.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/psread.c +FILE: ../../../flutter/third_party/freetype2/src/psaux/psread.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/psstack.c +FILE: ../../../flutter/third_party/freetype2/src/psaux/psstack.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/pstypes.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/t1cmap.c +FILE: ../../../flutter/third_party/freetype2/src/psaux/t1cmap.h +FILE: ../../../flutter/third_party/freetype2/src/psaux/t1decode.c +FILE: ../../../flutter/third_party/freetype2/src/psaux/t1decode.h +FILE: ../../../flutter/third_party/freetype2/src/pshinter/pshalgo.c +FILE: ../../../flutter/third_party/freetype2/src/pshinter/pshalgo.h +FILE: ../../../flutter/third_party/freetype2/src/pshinter/pshglob.c +FILE: ../../../flutter/third_party/freetype2/src/pshinter/pshglob.h +FILE: ../../../flutter/third_party/freetype2/src/pshinter/pshinter.c +FILE: ../../../flutter/third_party/freetype2/src/pshinter/pshmod.c +FILE: ../../../flutter/third_party/freetype2/src/pshinter/pshmod.h +FILE: ../../../flutter/third_party/freetype2/src/pshinter/pshnterr.h +FILE: ../../../flutter/third_party/freetype2/src/pshinter/pshrec.c +FILE: ../../../flutter/third_party/freetype2/src/pshinter/pshrec.h +FILE: ../../../flutter/third_party/freetype2/src/psnames/psmodule.c +FILE: ../../../flutter/third_party/freetype2/src/psnames/psmodule.h +FILE: ../../../flutter/third_party/freetype2/src/psnames/psnamerr.h +FILE: ../../../flutter/third_party/freetype2/src/psnames/psnames.c +FILE: ../../../flutter/third_party/freetype2/src/psnames/pstables.h +FILE: ../../../flutter/third_party/freetype2/src/raster/ftmisc.h +FILE: ../../../flutter/third_party/freetype2/src/raster/ftraster.c +FILE: ../../../flutter/third_party/freetype2/src/raster/ftraster.h +FILE: ../../../flutter/third_party/freetype2/src/raster/ftrend1.c +FILE: ../../../flutter/third_party/freetype2/src/raster/ftrend1.h +FILE: ../../../flutter/third_party/freetype2/src/raster/raster.c +FILE: ../../../flutter/third_party/freetype2/src/raster/rasterrs.h +FILE: ../../../flutter/third_party/freetype2/src/sdf/ftbsdf.c +FILE: ../../../flutter/third_party/freetype2/src/sdf/ftsdf.c +FILE: ../../../flutter/third_party/freetype2/src/sdf/ftsdf.h +FILE: ../../../flutter/third_party/freetype2/src/sdf/ftsdfcommon.c +FILE: ../../../flutter/third_party/freetype2/src/sdf/ftsdfcommon.h +FILE: ../../../flutter/third_party/freetype2/src/sdf/ftsdferrs.h +FILE: ../../../flutter/third_party/freetype2/src/sdf/ftsdfrend.c +FILE: ../../../flutter/third_party/freetype2/src/sdf/ftsdfrend.h +FILE: ../../../flutter/third_party/freetype2/src/sdf/sdf.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/pngshim.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/pngshim.h +FILE: ../../../flutter/third_party/freetype2/src/sfnt/sfdriver.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/sfdriver.h +FILE: ../../../flutter/third_party/freetype2/src/sfnt/sferrors.h +FILE: ../../../flutter/third_party/freetype2/src/sfnt/sfnt.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/sfobjs.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/sfobjs.h +FILE: ../../../flutter/third_party/freetype2/src/sfnt/sfwoff.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/sfwoff.h +FILE: ../../../flutter/third_party/freetype2/src/sfnt/sfwoff2.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/sfwoff2.h +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttbdf.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttbdf.h +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttcmap.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttcmap.h +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttcmapc.h +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttcolr.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttcolr.h +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttcpal.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttcpal.h +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttkern.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttkern.h +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttload.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttload.h +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttmtx.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttmtx.h +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttpost.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttpost.h +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttsbit.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttsbit.h +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttsvg.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/ttsvg.h +FILE: ../../../flutter/third_party/freetype2/src/sfnt/woff2tags.c +FILE: ../../../flutter/third_party/freetype2/src/sfnt/woff2tags.h +FILE: ../../../flutter/third_party/freetype2/src/smooth/ftgrays.c +FILE: ../../../flutter/third_party/freetype2/src/smooth/ftgrays.h +FILE: ../../../flutter/third_party/freetype2/src/smooth/ftsmerrs.h +FILE: ../../../flutter/third_party/freetype2/src/smooth/ftsmooth.c +FILE: ../../../flutter/third_party/freetype2/src/smooth/ftsmooth.h +FILE: ../../../flutter/third_party/freetype2/src/smooth/smooth.c +FILE: ../../../flutter/third_party/freetype2/src/svg/ftsvg.c +FILE: ../../../flutter/third_party/freetype2/src/svg/ftsvg.h +FILE: ../../../flutter/third_party/freetype2/src/svg/svg.c +FILE: ../../../flutter/third_party/freetype2/src/svg/svgtypes.h +FILE: ../../../flutter/third_party/freetype2/src/truetype/truetype.c +FILE: ../../../flutter/third_party/freetype2/src/truetype/ttdriver.c +FILE: ../../../flutter/third_party/freetype2/src/truetype/ttdriver.h +FILE: ../../../flutter/third_party/freetype2/src/truetype/tterrors.h +FILE: ../../../flutter/third_party/freetype2/src/truetype/ttgload.c +FILE: ../../../flutter/third_party/freetype2/src/truetype/ttgload.h +FILE: ../../../flutter/third_party/freetype2/src/truetype/ttgxvar.c +FILE: ../../../flutter/third_party/freetype2/src/truetype/ttgxvar.h +FILE: ../../../flutter/third_party/freetype2/src/truetype/ttinterp.c +FILE: ../../../flutter/third_party/freetype2/src/truetype/ttinterp.h +FILE: ../../../flutter/third_party/freetype2/src/truetype/ttobjs.c +FILE: ../../../flutter/third_party/freetype2/src/truetype/ttobjs.h +FILE: ../../../flutter/third_party/freetype2/src/truetype/ttpload.c +FILE: ../../../flutter/third_party/freetype2/src/truetype/ttpload.h +FILE: ../../../flutter/third_party/freetype2/src/truetype/ttsubpix.c +FILE: ../../../flutter/third_party/freetype2/src/truetype/ttsubpix.h +FILE: ../../../flutter/third_party/freetype2/src/type1/t1afm.c +FILE: ../../../flutter/third_party/freetype2/src/type1/t1afm.h +FILE: ../../../flutter/third_party/freetype2/src/type1/t1driver.c +FILE: ../../../flutter/third_party/freetype2/src/type1/t1driver.h +FILE: ../../../flutter/third_party/freetype2/src/type1/t1errors.h +FILE: ../../../flutter/third_party/freetype2/src/type1/t1gload.c +FILE: ../../../flutter/third_party/freetype2/src/type1/t1gload.h +FILE: ../../../flutter/third_party/freetype2/src/type1/t1load.c +FILE: ../../../flutter/third_party/freetype2/src/type1/t1load.h +FILE: ../../../flutter/third_party/freetype2/src/type1/t1objs.c +FILE: ../../../flutter/third_party/freetype2/src/type1/t1objs.h +FILE: ../../../flutter/third_party/freetype2/src/type1/t1parse.c +FILE: ../../../flutter/third_party/freetype2/src/type1/t1parse.h +FILE: ../../../flutter/third_party/freetype2/src/type1/t1tokens.h +FILE: ../../../flutter/third_party/freetype2/src/type1/type1.c +FILE: ../../../flutter/third_party/freetype2/src/type42/t42drivr.c +FILE: ../../../flutter/third_party/freetype2/src/type42/t42drivr.h +FILE: ../../../flutter/third_party/freetype2/src/type42/t42error.h +FILE: ../../../flutter/third_party/freetype2/src/type42/t42objs.c +FILE: ../../../flutter/third_party/freetype2/src/type42/t42objs.h +FILE: ../../../flutter/third_party/freetype2/src/type42/t42parse.c +FILE: ../../../flutter/third_party/freetype2/src/type42/t42parse.h +FILE: ../../../flutter/third_party/freetype2/src/type42/t42types.h +FILE: ../../../flutter/third_party/freetype2/src/type42/type42.c +FILE: ../../../flutter/third_party/freetype2/src/winfonts/fnterrs.h +FILE: ../../../flutter/third_party/freetype2/src/winfonts/winfnt.c +FILE: ../../../flutter/third_party/freetype2/src/winfonts/winfnt.h +FILE: ../../../flutter/third_party/freetype2/subprojects/libpng.wrap +FILE: ../../../flutter/third_party/freetype2/subprojects/zlib.wrap +---------------------------------------------------------------------------------------------------- +The FreeType Project LICENSE +---------------------------- + + 2006-Jan-27 + + Copyright 1996-2002, 2006 by + David Turner, Robert Wilhelm, and Werner Lemberg + + + +Introduction +============ + + The FreeType Project is distributed in several archive packages; + some of them may contain, in addition to the FreeType font engine, + various tools and contributions which rely on, or relate to, the + FreeType Project. + + This license applies to all files found in such packages, and + which do not fall under their own explicit license. The license + affects thus the FreeType font engine, the test programs, + documentation and makefiles, at the very least. + + This license was inspired by the BSD, Artistic, and IJG + (Independent JPEG Group) licenses, which all encourage inclusion + and use of free software in commercial and freeware products + alike. As a consequence, its main points are that: + + o We don't promise that this software works. However, we will be + interested in any kind of bug reports. (`as is' distribution) + + o You can use this software for whatever you want, in parts or + full form, without having to pay us. (`royalty-free' usage) + + o You may not pretend that you wrote this software. If you use + it, or only parts of it, in a program, you must acknowledge + somewhere in your documentation that you have used the + FreeType code. (`credits') + + We specifically permit and encourage the inclusion of this + software, with or without modifications, in commercial products. + We disclaim all warranties covering The FreeType Project and + assume no liability related to The FreeType Project. + + + Finally, many people asked us for a preferred form for a + credit/disclaimer to use in compliance with this license. We thus + encourage you to use the following text: + + """ + Portions of this software are copyright © The FreeType + Project (www.freetype.org). All rights reserved. + """ + + Please replace with the value from the FreeType version you + actually use. + + +Legal Terms +=========== + +0. Definitions +-------------- + + Throughout this license, the terms `package', `FreeType Project', + and `FreeType archive' refer to the set of files originally + distributed by the authors (David Turner, Robert Wilhelm, and + Werner Lemberg) as the `FreeType Project', be they named as alpha, + beta or final release. + + `You' refers to the licensee, or person using the project, where + `using' is a generic term including compiling the project's source + code as well as linking it to form a `program' or `executable'. + This program is referred to as `a program using the FreeType + engine'. + + This license applies to all files distributed in the original + FreeType Project, including all source code, binaries and + documentation, unless otherwise stated in the file in its + original, unmodified form as distributed in the original archive. + If you are unsure whether or not a particular file is covered by + this license, you must contact us to verify this. + + The FreeType Project is copyright (C) 1996-2000 by David Turner, + Robert Wilhelm, and Werner Lemberg. All rights reserved except as + specified below. + +1. No Warranty +-------------- + + THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO + USE, OF THE FREETYPE PROJECT. + +2. Redistribution +----------------- + + This license grants a worldwide, royalty-free, perpetual and + irrevocable right and license to use, execute, perform, compile, + display, copy, create derivative works of, distribute and + sublicense the FreeType Project (in both source and object code + forms) and derivative works thereof for any purpose; and to + authorize others to exercise some or all of the rights granted + herein, subject to the following conditions: + + o Redistribution of source code must retain this license file + (`FTL.TXT') unaltered; any additions, deletions or changes to + the original files must be clearly indicated in accompanying + documentation. The copyright notices of the unaltered, + original files must be preserved in all copies of source + files. + + o Redistribution in binary form must provide a disclaimer that + states that the software is based in part of the work of the + FreeType Team, in the distribution documentation. We also + encourage you to put an URL to the FreeType web page in your + documentation, though this isn't mandatory. + + These conditions apply to any software derived from or based on + the FreeType Project, not just the unmodified files. If you use + our work, you must acknowledge us. However, no fee need be paid + to us. + +3. Advertising +-------------- + + Neither the FreeType authors and contributors nor you shall use + the name of the other for commercial, advertising, or promotional + purposes without specific prior written permission. + + We suggest, but do not require, that you use one or more of the + following phrases to refer to this software in your documentation + or advertising materials: `FreeType Project', `FreeType Engine', + `FreeType library', or `FreeType Distribution'. + + As you have not signed this license, you are not required to + accept it. However, as the FreeType Project is copyrighted + material, only this license, or another one contracted with the + authors, grants you the right to use, distribute, and modify it. + Therefore, by using, distributing, or modifying the FreeType + Project, you indicate that you understand and accept all the terms + of this license. + +4. Contacts +----------- + + There are two mailing lists related to FreeType: + + o freetype@nongnu.org + + Discusses general use and applications of FreeType, as well as + future and wanted additions to the library and distribution. + If you are looking for support, start in this list if you + haven't found anything to help you in the documentation. + + o freetype-devel@nongnu.org + + Discusses bugs, as well as engine internals, design issues, + specific licenses, porting, etc. + + Our home page can be found at + + https://www.freetype.org + + +--- end of FTL.TXT --- +==================================================================================================== + ==================================================================================================== LIBRARY: rapidjson ORIGIN: ../../../flutter/third_party/rapidjson/include/rapidjson/msinttypes/inttypes.h @@ -16153,13 +20875,56 @@ May you share freely, never taking more than you give. ==================================================================================================== ==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/src/base/md5.h +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/freetype2/src/base/md5.h +---------------------------------------------------------------------------------------------------- +This software was written by Alexander Peslyak in 2001. No copyright is +claimed, and the software is hereby placed in the public domain. +In case this attempt to disclaim copyright and place the software in the +public domain is deemed null and void, then the software is +Copyright (c) 2001 Alexander Peslyak and it is hereby released to the +general public under the following terms: + +Redistribution and use in source and binary forms, with or without +modification, are permitted. + +There's ABSOLUTELY NO WARRANTY, express or implied. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../flutter/third_party/freetype2/src/base/md5.c +TYPE: LicenseType.unknown +FILE: ../../../flutter/third_party/freetype2/src/base/md5.c +---------------------------------------------------------------------------------------------------- +This software was written by Alexander Peslyak in 2001. No copyright is +claimed, and the software is hereby placed in the public domain. +In case this attempt to disclaim copyright and place the software in the +public domain is deemed null and void, then the software is +Copyright (c) 2001 Alexander Peslyak and it is hereby released to the +general public under the following terms: + +Redistribution and use in source and binary forms, with or without +modification, are permitted. + +There's ABSOLUTELY NO WARRANTY, express or implied. + +(This is a heavily cut-down "BSD license".) +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz LIBRARY: web_unicode ORIGIN: http://www.unicode.org/terms_of_use.html referenced by ../../../flutter/third_party/web_unicode/properties/LineBreak.txt ORIGIN: http://www.unicode.org/terms_of_use.html referenced by ../../../flutter/third_party/web_unicode/properties/WordBreakProperty.txt ORIGIN: https://www.unicode.org/copyright.html referenced by ../../../flutter/third_party/web_unicode/lib/web_unicode/codegen/line_break_properties.dart ORIGIN: https://www.unicode.org/copyright.html referenced by ../../../flutter/third_party/web_unicode/lib/web_unicode/codegen/word_break_properties.dart ORIGIN: https://www.unicode.org/copyright.html referenced by ../../../flutter/third_party/web_unicode/tool/unicode_sync_script.dart +ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../flutter/third_party/harfbuzz/src/hb-unicode-emoji-table.hh TYPE: LicenseType.unicode +FILE: ../../../flutter/third_party/harfbuzz/src/hb-unicode-emoji-table.hh FILE: ../../../flutter/third_party/web_unicode/lib/web_unicode/codegen/line_break_properties.dart FILE: ../../../flutter/third_party/web_unicode/lib/web_unicode/codegen/word_break_properties.dart FILE: ../../../flutter/third_party/web_unicode/properties/LineBreak.txt @@ -16781,4 +21546,4 @@ TO DO Please send bug reports, offers of help, etc. to jpeg-info@jpegclub.org. ==================================================================================================== -Total license count: 197 +Total license count: 319 diff --git a/ci/licenses_golden/licenses_third_party b/ci/licenses_golden/licenses_third_party index 636ab16903c2f..ed2a6408d3628 100644 --- a/ci/licenses_golden/licenses_third_party +++ b/ci/licenses_golden/licenses_third_party @@ -1,4 +1,4 @@ -Signature: 648877c3e49ab7e5969920020fd6fa45 +Signature: 85a0ec1e61c36c7c1a22b1af683fcd6a ==================================================================================================== LIBRARY: angle @@ -10324,47 +10324,6 @@ use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. ==================================================================================================== -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/gzip/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/freetype2/src/gzip/adler32.c -FILE: ../../../third_party/freetype2/src/gzip/crc32.c -FILE: ../../../third_party/freetype2/src/gzip/crc32.h -FILE: ../../../third_party/freetype2/src/gzip/ftzconf.h -FILE: ../../../third_party/freetype2/src/gzip/gzguts.h -FILE: ../../../third_party/freetype2/src/gzip/infback.c -FILE: ../../../third_party/freetype2/src/gzip/inffast.c -FILE: ../../../third_party/freetype2/src/gzip/inffast.h -FILE: ../../../third_party/freetype2/src/gzip/inffixed.h -FILE: ../../../third_party/freetype2/src/gzip/inflate.c -FILE: ../../../third_party/freetype2/src/gzip/inflate.h -FILE: ../../../third_party/freetype2/src/gzip/inftrees.c -FILE: ../../../third_party/freetype2/src/gzip/inftrees.h -FILE: ../../../third_party/freetype2/src/gzip/patches/freetype-zlib.diff -FILE: ../../../third_party/freetype2/src/gzip/zlib.h -FILE: ../../../third_party/freetype2/src/gzip/zutil.c -FILE: ../../../third_party/freetype2/src/gzip/zutil.h ----------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== - ==================================================================================================== LIBRARY: zlib ORIGIN: ../../../third_party/zlib/zlib.h @@ -14196,34 +14155,6 @@ use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. ==================================================================================================== -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcf.h -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/pcf/pcf.h ----------------------------------------------------------------------------------------------------- -Copyright (C) 2000, 2001, 2002, 2003, 2006, 2010 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - ==================================================================================================== LIBRARY: icu ORIGIN: ../../../third_party/icu/source/tools/genrb/rle.h + ../../../third_party/icu/LICENSE @@ -14302,34 +14233,6 @@ use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. ==================================================================================================== -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcfdrivr.c -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/pcf/pcfdrivr.c ----------------------------------------------------------------------------------------------------- -Copyright (C) 2000-2004, 2006-2011, 2013, 2014 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - ==================================================================================================== LIBRARY: icu ORIGIN: ../../../third_party/icu/source/common/unicode/ucnv_cb.h + ../../../third_party/icu/LICENSE @@ -14918,62 +14821,6 @@ use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. ==================================================================================================== -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/bdf/bdf.c -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/bdf/bdf.c ----------------------------------------------------------------------------------------------------- -Copyright (C) 2001, 2002 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/bdf/bdfdrivr.h -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/bdf/bdfdrivr.h ----------------------------------------------------------------------------------------------------- -Copyright (C) 2001, 2002, 2003, 2004 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - ==================================================================================================== LIBRARY: icu ORIGIN: ../../../third_party/icu/source/common/cwchar.cpp + ../../../third_party/icu/LICENSE @@ -15243,34 +15090,6 @@ use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. ==================================================================================================== -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/bdf/bdfdrivr.c -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/bdf/bdfdrivr.c ----------------------------------------------------------------------------------------------------- -Copyright (C) 2001-2008, 2011, 2013, 2014 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - ==================================================================================================== LIBRARY: icu ORIGIN: ../../../third_party/icu/source/common/utrie2_impl.h + ../../../third_party/icu/LICENSE @@ -24075,39 +23894,6 @@ use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. ==================================================================================================== -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-gobject-enums.cc.tmpl -ORIGIN: ../../../third_party/harfbuzz/src/hb-gobject-structs.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-gobject.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-gobject-enums.cc.tmpl -FILE: ../../../third_party/harfbuzz/src/hb-gobject-structs.h -FILE: ../../../third_party/harfbuzz/src/hb-gobject.h ----------------------------------------------------------------------------------------------------- -Copyright (C) 2011 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - ==================================================================================================== LIBRARY: icu ORIGIN: ../../../third_party/icu/source/common/messageimpl.h + ../../../third_party/icu/LICENSE @@ -24610,27 +24396,6 @@ use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. ==================================================================================================== -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ucd.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ucd.cc ----------------------------------------------------------------------------------------------------- -Copyright (C) 2012 Grigori Goronzy - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -==================================================================================================== - ==================================================================================================== LIBRARY: icu ORIGIN: ../../../third_party/icu/source/i18n/regeximp.cpp + ../../../third_party/icu/LICENSE @@ -24952,35 +24717,6 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-gobject-enums.h.tmpl -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-gobject-enums.h.tmpl ----------------------------------------------------------------------------------------------------- -Copyright (C) 2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - ==================================================================================================== LIBRARY: glslang ORIGIN: ../../../third_party/vulkan-deps/glslang/src/StandAlone/Worklist.h @@ -31970,264 +31706,6 @@ This software is made available under the terms of the ICU License -- ICU 1.8.1 and later. ==================================================================================================== -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/ms-use/COPYING -TYPE: LicenseType.mit -FILE: ../../../third_party/harfbuzz/src/ms-use/IndicPositionalCategory-Additional.txt -FILE: ../../../third_party/harfbuzz/src/ms-use/IndicShapingInvalidCluster.txt -FILE: ../../../third_party/harfbuzz/src/ms-use/IndicSyllabicCategory-Additional.txt ----------------------------------------------------------------------------------------------------- -Copyright (c) Microsoft Corporation. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcfutil.c -TYPE: LicenseType.unknown -FILE: ../../../third_party/freetype2/src/pcf/pcfutil.c ----------------------------------------------------------------------------------------------------- -Copyright 1990, 1994, 1998 The Open Group - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of The Open Group shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/bdf/bdf.h -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/bdf/bdf.h ----------------------------------------------------------------------------------------------------- -Copyright 2000 Computing Research Labs, New Mexico State University -Copyright 2001-2004, 2011 Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/bdf/bdflib.c -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/bdf/bdflib.c ----------------------------------------------------------------------------------------------------- -Copyright 2000 Computing Research Labs, New Mexico State University -Copyright 2001-2014 - Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/include/freetype/internal/fthash.h -ORIGIN: ../../../third_party/freetype2/src/base/fthash.c -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/include/freetype/internal/fthash.h -FILE: ../../../third_party/freetype2/src/base/fthash.c ----------------------------------------------------------------------------------------------------- -Copyright 2000 Computing Research Labs, New Mexico State University -Copyright 2001-2015 - Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcfutil.h -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/pcf/pcfutil.h ----------------------------------------------------------------------------------------------------- -Copyright 2000, 2001, 2004 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcfdrivr.h -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/pcf/pcfdrivr.h ----------------------------------------------------------------------------------------------------- -Copyright 2000-2001, 2002 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcf.c -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/pcf/pcf.c ----------------------------------------------------------------------------------------------------- -Copyright 2000-2001, 2003 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcfread.c -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/pcf/pcfread.c ----------------------------------------------------------------------------------------------------- -Copyright 2000-2010, 2012-2014 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - ==================================================================================================== LIBRARY: icu ORIGIN: ../../../third_party/icu/source/common/unicode/stringpiece.h + ../../../third_party/icu/LICENSE @@ -32266,33 +31744,6 @@ use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. ==================================================================================================== -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/bdf/bdferror.h -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/bdf/bdferror.h ----------------------------------------------------------------------------------------------------- -Copyright 2001, 2002, 2012 Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== - ==================================================================================================== LIBRARY: angle ORIGIN: ../../../third_party/angle/include/GLSLANG/ShaderLang.h + ../../../third_party/angle/LICENSE @@ -32644,34 +32095,6 @@ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcfread.h -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/pcf/pcfread.h ----------------------------------------------------------------------------------------------------- -Copyright 2003 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - ==================================================================================================== LIBRARY: icu ORIGIN: ../../../third_party/icu/source/common/stringpiece.cpp + ../../../third_party/icu/LICENSE @@ -37629,3358 +37052,6 @@ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-buffer.h ----------------------------------------------------------------------------------------------------- -Copyright © 1998-2004 David Turner and Werner Lemberg -Copyright © 2004,2007,2009 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-buffer.cc -FILE: ../../../third_party/harfbuzz/src/hb-buffer.hh ----------------------------------------------------------------------------------------------------- -Copyright © 1998-2004 David Turner and Werner Lemberg -Copyright © 2004,2007,2009,2010 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout.cc ----------------------------------------------------------------------------------------------------- -Copyright © 1998-2004 David Turner and Werner Lemberg -Copyright © 2006 Behdad Esfahbod -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-atomic.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-mutex.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-object.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-atomic.hh -FILE: ../../../third_party/harfbuzz/src/hb-mutex.hh -FILE: ../../../third_party/harfbuzz/src/hb-object.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007 Chris Wilson -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout.h ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009 Red Hat, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/OT/Layout/GDEF/GDEF.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-gdef-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GDEF/GDEF.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-gdef-table.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2010,2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/OT/Layout/Common/Coverage.hh -ORIGIN: ../../../third_party/harfbuzz/src/OT/Layout/Common/CoverageFormat1.hh -ORIGIN: ../../../third_party/harfbuzz/src/OT/Layout/Common/CoverageFormat2.hh -ORIGIN: ../../../third_party/harfbuzz/src/OT/Layout/Common/RangeRecord.hh -ORIGIN: ../../../third_party/harfbuzz/src/OT/Layout/types.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-common.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/OT/Layout/Common/Coverage.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/Common/CoverageFormat1.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/Common/CoverageFormat2.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/Common/RangeRecord.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/types.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-common.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2010,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-common.h -ORIGIN: ../../../third_party/harfbuzz/src/hb.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-common.h -FILE: ../../../third_party/harfbuzz/src/hb.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-open-file.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-open-file.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-face.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-face.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-face-table-list.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-face-table-list.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012,2013 Google, Inc. -Copyright © 2019, Facebook Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/main.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/main.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2018,2019,2020 Ebrahim Byagowi -Copyright © 2018 Khaled Hosny - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-gsubgpos.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-gsubgpos.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2010,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-gpos-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-gsub-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-gpos-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-gsub-table.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2010,2012,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-open-type.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-open-type.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-dispatch.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-machinery.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-sanitize.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-dispatch.hh -FILE: ../../../third_party/harfbuzz/src/hb-machinery.hh -FILE: ../../../third_party/harfbuzz/src/hb-sanitize.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2012,2018 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-serialize.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-serialize.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2012,2018 Google, Inc. -Copyright © 2019 Facebook, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-blob.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-face.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-font.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot.h -ORIGIN: ../../../third_party/harfbuzz/src/hb.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-blob.h -FILE: ../../../third_party/harfbuzz/src/hb-face.h -FILE: ../../../third_party/harfbuzz/src/hb-font.h -FILE: ../../../third_party/harfbuzz/src/hb-ot.h -FILE: ../../../third_party/harfbuzz/src/hb.h ----------------------------------------------------------------------------------------------------- -Copyright © 2009 Red Hat, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-icu.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-icu.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2009 Red Hat, Inc. -Copyright © 2009 Keith Stribley -Copyright © 2011 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ft.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ft.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2009 Red Hat, Inc. -Copyright © 2009 Keith Stribley -Copyright © 2015 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-unicode.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-unicode.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-unicode.cc -FILE: ../../../third_party/harfbuzz/src/hb-unicode.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2009 Red Hat, Inc. -Copyright © 2011 Codethink Limited -Copyright © 2010,2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-unicode.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-unicode.h ----------------------------------------------------------------------------------------------------- -Copyright © 2009 Red Hat, Inc. -Copyright © 2011 Codethink Limited -Copyright © 2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-face.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-font.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-glib.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-glib.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-icu.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-tag.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-face.hh -FILE: ../../../third_party/harfbuzz/src/hb-font.hh -FILE: ../../../third_party/harfbuzz/src/hb-glib.cc -FILE: ../../../third_party/harfbuzz/src/hb-glib.h -FILE: ../../../third_party/harfbuzz/src/hb-icu.h -FILE: ../../../third_party/harfbuzz/src/hb-ot-tag.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2009 Red Hat, Inc. -Copyright © 2011 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-face-builder.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-face.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-font.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-shape.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-shape.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-face-builder.cc -FILE: ../../../third_party/harfbuzz/src/hb-face.cc -FILE: ../../../third_party/harfbuzz/src/hb-font.cc -FILE: ../../../third_party/harfbuzz/src/hb-shape.cc -FILE: ../../../third_party/harfbuzz/src/hb-shape.h ----------------------------------------------------------------------------------------------------- -Copyright © 2009 Red Hat, Inc. -Copyright © 2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ft.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ft.h ----------------------------------------------------------------------------------------------------- -Copyright © 2009 Red Hat, Inc. -Copyright © 2015 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-blob.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-blob.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2009 Red Hat, Inc. -Copyright © 2018 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-blob.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-blob.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2009 Red Hat, Inc. -Copyright © 2018 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2010,2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-map.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-map.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2010,2011,2012,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-map.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-map.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-aat-map.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-map.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2010,2011,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-common.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-common.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2010 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-head-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-head-table.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2010 Red Hat, Inc. -Copyright © 2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/test-gpos-size-params.cc -ORIGIN: ../../../third_party/harfbuzz/src/test-gsub-get-alternates.cc -ORIGIN: ../../../third_party/harfbuzz/src/test-gsub-would-substitute.cc -ORIGIN: ../../../third_party/harfbuzz/src/test.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/test-gpos-size-params.cc -FILE: ../../../third_party/harfbuzz/src/test-gsub-get-alternates.cc -FILE: ../../../third_party/harfbuzz/src/test-gsub-would-substitute.cc -FILE: ../../../third_party/harfbuzz/src/test.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2010,2011 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2010,2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/test-buffer-serialize.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/test-buffer-serialize.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2010,2011,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-arabic.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-default.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-hebrew.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-thai.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-arabic.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-default.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-hebrew.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-thai.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2010,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-fallback-shape.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-gobject-structs.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-uniscribe.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-version.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-version.h.in -ORIGIN: ../../../third_party/harfbuzz/src/hb-wasm-shape.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-fallback-shape.cc -FILE: ../../../third_party/harfbuzz/src/hb-gobject-structs.cc -FILE: ../../../third_party/harfbuzz/src/hb-uniscribe.h -FILE: ../../../third_party/harfbuzz/src/hb-version.h -FILE: ../../../third_party/harfbuzz/src/hb-version.h.in -FILE: ../../../third_party/harfbuzz/src/hb-wasm-shape.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2011 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-graphite2.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-graphite2.h ----------------------------------------------------------------------------------------------------- -Copyright © 2011 Martin Hosken -Copyright © 2011 SIL International - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-graphite2.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-graphite2.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2011 Martin Hosken -Copyright © 2011 SIL International -Copyright © 2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/OT/name/name.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-hhea-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-hmtx-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-maxp-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-name-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-fallback.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-normalize.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-indic-machine.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-indic-machine.rl -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-indic.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-khmer-machine.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-khmer-machine.rl -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-khmer.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-myanmar-machine.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-myanmar-machine.rl -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/OT/name/name.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-hhea-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-hmtx-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-maxp-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-name-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-fallback.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-normalize.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-indic-machine.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-indic-machine.rl -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-indic.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-khmer-machine.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-khmer-machine.rl -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-khmer.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-myanmar-machine.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-myanmar-machine.rl ----------------------------------------------------------------------------------------------------- -Copyright © 2011,2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-os2-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-os2-table.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2011,2012 Google, Inc. -Copyright © 2018 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-myanmar.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-uniscribe.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-myanmar.cc -FILE: ../../../third_party/harfbuzz/src/hb-uniscribe.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2011,2012,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ms-feature-ranges.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ms-feature-ranges.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2011,2012,2013 Google, Inc. -Copyright © 2021 Khaled Hosny - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-utf.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-utf.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2011,2012,2014 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-font.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-font.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2011,2014 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-cache.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-fallback.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-normalize.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-arabic-fallback.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-indic.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-set-digest.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-set.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-set.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-shape-plan.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-shape-plan.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-shaper-impl.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-shaper-list.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-shaper.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-shaper.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-cache.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-fallback.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-normalize.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-arabic-fallback.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-indic.hh -FILE: ../../../third_party/harfbuzz/src/hb-set-digest.hh -FILE: ../../../third_party/harfbuzz/src/hb-set.cc -FILE: ../../../third_party/harfbuzz/src/hb-set.h -FILE: ../../../third_party/harfbuzz/src/hb-shape-plan.cc -FILE: ../../../third_party/harfbuzz/src/hb-shape-plan.h -FILE: ../../../third_party/harfbuzz/src/hb-shaper-impl.hh -FILE: ../../../third_party/harfbuzz/src/hb-shaper-list.hh -FILE: ../../../third_party/harfbuzz/src/hb-shaper.cc -FILE: ../../../third_party/harfbuzz/src/hb-shaper.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2012 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-coretext.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-coretext.h ----------------------------------------------------------------------------------------------------- -Copyright © 2012 Mozilla Foundation. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-serialize.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-buffer-serialize.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2012,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-coretext.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-coretext.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2012,2013 Mozilla Foundation. -Copyright © 2012,2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-bit-page.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-bit-set-invertible.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-bit-set.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-set.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-bit-page.hh -FILE: ../../../third_party/harfbuzz/src/hb-bit-set-invertible.hh -FILE: ../../../third_party/harfbuzz/src/hb-bit-set.hh -FILE: ../../../third_party/harfbuzz/src/hb-set.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2012,2017 Google, Inc. -Copyright © 2021 Behdad Esfahbod - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-shape-plan.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-shape-plan.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2012,2018 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-json.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-json.rl -ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-text-glyphs.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-text-glyphs.rl -ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-text-unicode.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-text-unicode.rl -ORIGIN: ../../../third_party/harfbuzz/src/hb-deprecated.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-jstf-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-hangul.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-json.hh -FILE: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-json.rl -FILE: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-text-glyphs.hh -FILE: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-text-glyphs.rl -FILE: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-text-unicode.hh -FILE: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-text-unicode.rl -FILE: ../../../third_party/harfbuzz/src/hb-deprecated.h -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-jstf-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-hangul.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2013 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape.h ----------------------------------------------------------------------------------------------------- -Copyright © 2013 Red Hat, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-cmap-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-font.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-arabic-win1256.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-cmap-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-font.h -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-arabic-win1256.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2014 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-glyf-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-glyf-table.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2015 Google, Inc. -Copyright © 2019 Adobe Inc. -Copyright © 2019 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-arabic.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-use-machine.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-use-machine.rl -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-use.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-arabic.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-use-machine.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-use-machine.rl -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-use.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2015 Mozilla Foundation. -Copyright © 2015 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-directwrite.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-directwrite.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-directwrite.cc -FILE: ../../../third_party/harfbuzz/src/hb-directwrite.h ----------------------------------------------------------------------------------------------------- -Copyright © 2015-2019 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-base-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-base-table.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2016 Elie Roux -Copyright © 2018 Google, Inc. -Copyright © 2018-2019 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/OT/Color/CBDT/CBDT.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-post-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/OT/Color/CBDT/CBDT.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-post-table.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2016 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/OT/Color/CPAL/CPAL.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-color.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/OT/Color/CPAL/CPAL.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-color.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2016 Google, Inc. -Copyright © 2018 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-color.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-color.h ----------------------------------------------------------------------------------------------------- -Copyright © 2016 Google, Inc. -Copyright © 2018 Khaled Hosny -Copyright © 2018 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-math-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-math.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-math.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-math-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-math.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-math.h ----------------------------------------------------------------------------------------------------- -Copyright © 2016 Igalia S.L. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-common.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-morx-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-debug.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-kern.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-kern-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-post-macroman.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-var-avar-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-var-fvar-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-var-hvar-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-var-mvar-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-var.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-var.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-string-array.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-common.hh -FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-morx-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-aat-layout.hh -FILE: ../../../third_party/harfbuzz/src/hb-debug.hh -FILE: ../../../third_party/harfbuzz/src/hb-kern.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-kern-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-post-macroman.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-var-avar-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-var-fvar-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-var-hvar-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-var-mvar-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-var.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-var.h -FILE: ../../../third_party/harfbuzz/src/hb-string-array.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2017 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-aat-layout.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2017 Google, Inc. -Copyright © 2018 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-algs.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-algs.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2017 Google, Inc. -Copyright © 2019 Facebook, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-vector.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-vector.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2017,2018 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/OT/Color/svg/svg.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-ankr-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-bsln-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-feat-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-just-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-ltag-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-aat.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-gasp-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-metrics.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-metrics.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-stat-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/OT/Color/svg/svg.hh -FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-ankr-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-bsln-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-feat-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-just-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-aat-layout.h -FILE: ../../../third_party/harfbuzz/src/hb-aat-ltag-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-aat.h -FILE: ../../../third_party/harfbuzz/src/hb-ot-gasp-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-metrics.h -FILE: ../../../third_party/harfbuzz/src/hb-ot-metrics.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-stat-table.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2018 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-kerx-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-trak-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-kerx-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-trak-table.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2018 Ebrahim Byagowi -Copyright © 2018 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/OT/Color/COLR/COLR.hh -ORIGIN: ../../../third_party/harfbuzz/src/OT/Color/COLR/colrv1-closure.hh -ORIGIN: ../../../third_party/harfbuzz/src/OT/Color/sbix/sbix.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/OT/Color/COLR/COLR.hh -FILE: ../../../third_party/harfbuzz/src/OT/Color/COLR/colrv1-closure.hh -FILE: ../../../third_party/harfbuzz/src/OT/Color/sbix/sbix.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2018 Ebrahim Byagowi -Copyright © 2020 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-name.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-name.h ----------------------------------------------------------------------------------------------------- -Copyright © 2018 Ebrahim Byagowi. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-map.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-array.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-map.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-map.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-map.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-meta.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-null.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-deprecated.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-face.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-hdmx-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-name-language-static.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-name-language.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-name.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-os2-unicode-ranges.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-vowel-constraints.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-static.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-input.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-input.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-plan.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-plan.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-subset.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-subset.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-subset.hh -ORIGIN: ../../../third_party/harfbuzz/src/test-iter.cc -ORIGIN: ../../../third_party/harfbuzz/src/test-ot-name.cc -ORIGIN: ../../../third_party/harfbuzz/src/test-unicode-ranges.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-aat-map.hh -FILE: ../../../third_party/harfbuzz/src/hb-array.hh -FILE: ../../../third_party/harfbuzz/src/hb-map.cc -FILE: ../../../third_party/harfbuzz/src/hb-map.h -FILE: ../../../third_party/harfbuzz/src/hb-map.hh -FILE: ../../../third_party/harfbuzz/src/hb-meta.hh -FILE: ../../../third_party/harfbuzz/src/hb-null.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-deprecated.h -FILE: ../../../third_party/harfbuzz/src/hb-ot-face.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-hdmx-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-name-language-static.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-name-language.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-name.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-os2-unicode-ranges.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-vowel-constraints.hh -FILE: ../../../third_party/harfbuzz/src/hb-static.cc -FILE: ../../../third_party/harfbuzz/src/hb-subset-input.cc -FILE: ../../../third_party/harfbuzz/src/hb-subset-input.hh -FILE: ../../../third_party/harfbuzz/src/hb-subset-plan.cc -FILE: ../../../third_party/harfbuzz/src/hb-subset-plan.hh -FILE: ../../../third_party/harfbuzz/src/hb-subset.cc -FILE: ../../../third_party/harfbuzz/src/hb-subset.h -FILE: ../../../third_party/harfbuzz/src/hb-subset.hh -FILE: ../../../third_party/harfbuzz/src/test-iter.cc -FILE: ../../../third_party/harfbuzz/src/test-ot-name.cc -FILE: ../../../third_party/harfbuzz/src/test-unicode-ranges.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2018 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-iter.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-iter.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2018 Google, Inc. -Copyright © 2019 Facebook, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-plan-member-list.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-subset-plan-member-list.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2018 Google, Inc. -Copyright © 2023 Behdad Esfahbod - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-cff-interp-common.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-cff-interp-cs-common.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-cff-interp-dict-common.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-cff1-interp-cs.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-cff2-interp-cs.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-cff-common.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-cff1-table.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-cff1-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-cff2-table.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-cff2-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-vorg-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-cff-common.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-cff-common.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-cff1.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-cff2.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-cff-interp-common.hh -FILE: ../../../third_party/harfbuzz/src/hb-cff-interp-cs-common.hh -FILE: ../../../third_party/harfbuzz/src/hb-cff-interp-dict-common.hh -FILE: ../../../third_party/harfbuzz/src/hb-cff1-interp-cs.hh -FILE: ../../../third_party/harfbuzz/src/hb-cff2-interp-cs.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-cff-common.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-cff1-table.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-cff1-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-cff2-table.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-cff2-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-vorg-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-subset-cff-common.cc -FILE: ../../../third_party/harfbuzz/src/hb-subset-cff-common.hh -FILE: ../../../third_party/harfbuzz/src/hb-subset-cff1.cc -FILE: ../../../third_party/harfbuzz/src/hb-subset-cff2.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2018 Adobe Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-metrics.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-metrics.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2018-2019 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-var-gvar-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-var-gvar-table.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2019 Adobe Inc. -Copyright © 2019 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-cff1-std-str.hh -ORIGIN: ../../../third_party/harfbuzz/src/test-bimap.cc -ORIGIN: ../../../third_party/harfbuzz/src/test-ot-glyphname.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-cff1-std-str.hh -FILE: ../../../third_party/harfbuzz/src/test-bimap.cc -FILE: ../../../third_party/harfbuzz/src/test-ot-glyphname.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2019 Adobe, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-opbd-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-gdi.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-gdi.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-number-parser.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-number-parser.rl -ORIGIN: ../../../third_party/harfbuzz/src/hb-number.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-number.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-meta-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-meta.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-meta.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-style.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-style.h -ORIGIN: ../../../third_party/harfbuzz/src/test-number.cc -ORIGIN: ../../../third_party/harfbuzz/src/test-ot-meta.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-opbd-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-gdi.cc -FILE: ../../../third_party/harfbuzz/src/hb-gdi.h -FILE: ../../../third_party/harfbuzz/src/hb-number-parser.hh -FILE: ../../../third_party/harfbuzz/src/hb-number-parser.rl -FILE: ../../../third_party/harfbuzz/src/hb-number.cc -FILE: ../../../third_party/harfbuzz/src/hb-number.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-meta-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-meta.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-meta.h -FILE: ../../../third_party/harfbuzz/src/hb-style.cc -FILE: ../../../third_party/harfbuzz/src/hb-style.h -FILE: ../../../third_party/harfbuzz/src/test-number.cc -FILE: ../../../third_party/harfbuzz/src/test-ot-meta.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2019 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-config.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-pool.hh -ORIGIN: ../../../third_party/harfbuzz/src/test-algs.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-config.hh -FILE: ../../../third_party/harfbuzz/src/hb-pool.hh -FILE: ../../../third_party/harfbuzz/src/test-algs.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2019 Facebook, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-bimap.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-bimap.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2019 Adobe Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-draw.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-draw.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-draw.cc -FILE: ../../../third_party/harfbuzz/src/hb-draw.h ----------------------------------------------------------------------------------------------------- -Copyright © 2019-2020 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/failing-alloc.c -ORIGIN: ../../../third_party/harfbuzz/src/hb-draw.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/failing-alloc.c -FILE: ../../../third_party/harfbuzz/src/hb-draw.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2020 Ebrahim Byagowi - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-priority-queue.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-repacker.hh -ORIGIN: ../../../third_party/harfbuzz/src/test-array.cc -ORIGIN: ../../../third_party/harfbuzz/src/test-item-varstore.cc -ORIGIN: ../../../third_party/harfbuzz/src/test-priority-queue.cc -ORIGIN: ../../../third_party/harfbuzz/src/test-repacker.cc -ORIGIN: ../../../third_party/harfbuzz/src/test-tuple-varstore.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-priority-queue.hh -FILE: ../../../third_party/harfbuzz/src/hb-repacker.hh -FILE: ../../../third_party/harfbuzz/src/test-array.cc -FILE: ../../../third_party/harfbuzz/src/test-item-varstore.cc -FILE: ../../../third_party/harfbuzz/src/test-priority-queue.cc -FILE: ../../../third_party/harfbuzz/src/test-repacker.cc -FILE: ../../../third_party/harfbuzz/src/test-tuple-varstore.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2020 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/test-map.cc -ORIGIN: ../../../third_party/harfbuzz/src/test-set.cc -ORIGIN: ../../../third_party/harfbuzz/src/test-vector.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/test-map.cc -FILE: ../../../third_party/harfbuzz/src/test-set.cc -FILE: ../../../third_party/harfbuzz/src/test-vector.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2021 Behdad Esfahbod - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-syllabic.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shaper-syllabic.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-syllabic.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-syllabic.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2021 Behdad Esfahbod. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-post-table-v2subset.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-var-common.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-post-table-v2subset.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-var-common.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2021 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-verify.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-ft-colr.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-limits.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-multimap.hh -ORIGIN: ../../../third_party/harfbuzz/src/test-machinery.cc -ORIGIN: ../../../third_party/harfbuzz/src/test-multimap.cc -ORIGIN: ../../../third_party/harfbuzz/src/test-serialize.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-buffer-verify.cc -FILE: ../../../third_party/harfbuzz/src/hb-ft-colr.hh -FILE: ../../../third_party/harfbuzz/src/hb-limits.hh -FILE: ../../../third_party/harfbuzz/src/hb-multimap.hh -FILE: ../../../third_party/harfbuzz/src/test-machinery.cc -FILE: ../../../third_party/harfbuzz/src/test-multimap.cc -FILE: ../../../third_party/harfbuzz/src/test-serialize.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2022 Behdad Esfahbod - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/graph/classdef-graph.hh -ORIGIN: ../../../third_party/harfbuzz/src/graph/coverage-graph.hh -ORIGIN: ../../../third_party/harfbuzz/src/graph/graph.hh -ORIGIN: ../../../third_party/harfbuzz/src/graph/gsubgpos-context.cc -ORIGIN: ../../../third_party/harfbuzz/src/graph/gsubgpos-context.hh -ORIGIN: ../../../third_party/harfbuzz/src/graph/gsubgpos-graph.hh -ORIGIN: ../../../third_party/harfbuzz/src/graph/markbasepos-graph.hh -ORIGIN: ../../../third_party/harfbuzz/src/graph/pairpos-graph.hh -ORIGIN: ../../../third_party/harfbuzz/src/graph/serialize.hh -ORIGIN: ../../../third_party/harfbuzz/src/graph/split-helpers.hh -ORIGIN: ../../../third_party/harfbuzz/src/graph/test-classdef-graph.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-accelerator.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-repacker.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-repacker.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/graph/classdef-graph.hh -FILE: ../../../third_party/harfbuzz/src/graph/coverage-graph.hh -FILE: ../../../third_party/harfbuzz/src/graph/graph.hh -FILE: ../../../third_party/harfbuzz/src/graph/gsubgpos-context.cc -FILE: ../../../third_party/harfbuzz/src/graph/gsubgpos-context.hh -FILE: ../../../third_party/harfbuzz/src/graph/gsubgpos-graph.hh -FILE: ../../../third_party/harfbuzz/src/graph/markbasepos-graph.hh -FILE: ../../../third_party/harfbuzz/src/graph/pairpos-graph.hh -FILE: ../../../third_party/harfbuzz/src/graph/serialize.hh -FILE: ../../../third_party/harfbuzz/src/graph/split-helpers.hh -FILE: ../../../third_party/harfbuzz/src/graph/test-classdef-graph.cc -FILE: ../../../third_party/harfbuzz/src/hb-subset-accelerator.hh -FILE: ../../../third_party/harfbuzz/src/hb-subset-repacker.cc -FILE: ../../../third_party/harfbuzz/src/hb-subset-repacker.h ----------------------------------------------------------------------------------------------------- -Copyright © 2022 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-cairo-utils.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-cairo-utils.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2022 Red Hat, Inc - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-cairo-utils.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-cairo-utils.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2022 Red Hat, Inc -Copyright © 2021, 2022 Black Foundry - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-cairo.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-cairo.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2022 Red Hat, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-cplusplus.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-paint-extents.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-paint-extents.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-cplusplus.hh -FILE: ../../../third_party/harfbuzz/src/hb-paint-extents.cc -FILE: ../../../third_party/harfbuzz/src/hb-paint-extents.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2022 Behdad Esfahbod - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-paint.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-paint.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-paint.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-paint.cc -FILE: ../../../third_party/harfbuzz/src/hb-paint.h -FILE: ../../../third_party/harfbuzz/src/hb-paint.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2022 Matthias Clasen - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-cairo.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-features.h.in -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-cairo.h -FILE: ../../../third_party/harfbuzz/src/hb-features.h.in ----------------------------------------------------------------------------------------------------- -Copyright © 2022 Red Hat, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-outline.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-instancer-solver.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-instancer-solver.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-wasm-api-blob.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-wasm-api-buffer.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-wasm-api-common.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-wasm-api-face.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-wasm-api-font.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-wasm-api-list.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-wasm-api-shape.hh -ORIGIN: ../../../third_party/harfbuzz/src/hb-wasm-api.cc -ORIGIN: ../../../third_party/harfbuzz/src/hb-wasm-api.h -ORIGIN: ../../../third_party/harfbuzz/src/hb-wasm-api.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-outline.hh -FILE: ../../../third_party/harfbuzz/src/hb-subset-instancer-solver.cc -FILE: ../../../third_party/harfbuzz/src/hb-subset-instancer-solver.hh -FILE: ../../../third_party/harfbuzz/src/hb-wasm-api-blob.hh -FILE: ../../../third_party/harfbuzz/src/hb-wasm-api-buffer.hh -FILE: ../../../third_party/harfbuzz/src/hb-wasm-api-common.hh -FILE: ../../../third_party/harfbuzz/src/hb-wasm-api-face.hh -FILE: ../../../third_party/harfbuzz/src/hb-wasm-api-font.hh -FILE: ../../../third_party/harfbuzz/src/hb-wasm-api-list.hh -FILE: ../../../third_party/harfbuzz/src/hb-wasm-api-shape.hh -FILE: ../../../third_party/harfbuzz/src/hb-wasm-api.cc -FILE: ../../../third_party/harfbuzz/src/hb-wasm-api.h -FILE: ../../../third_party/harfbuzz/src/hb-wasm-api.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2023 Behdad Esfahbod - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-outline.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-outline.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2023 Behdad Esfahbod -Copyright © 1999 David Turner -Copyright © 2005 Werner Lemberg -Copyright © 2013-2015 Alexei Podtelezhnikov - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-var-cvar-table.hh -ORIGIN: ../../../third_party/harfbuzz/src/test-subset-instancer-solver.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-var-cvar-table.hh -FILE: ../../../third_party/harfbuzz/src/test-subset-instancer-solver.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2023 Google, Inc. - -This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - ==================================================================================================== LIBRARY: glslang ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/SpirvIntrinsics.h @@ -41023,799 +37094,6 @@ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/COPYING -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/.ci/requirements-fonttools.in -FILE: ../../../third_party/harfbuzz/.ci/requirements-fonttools.txt -FILE: ../../../third_party/harfbuzz/.ci/requirements.in -FILE: ../../../third_party/harfbuzz/.ci/win32-cross-file.txt -FILE: ../../../third_party/harfbuzz/.ci/win64-cross-file.txt -FILE: ../../../third_party/harfbuzz/.circleci/config.yml -FILE: ../../../third_party/harfbuzz/.codecov.yml -FILE: ../../../third_party/harfbuzz/harfbuzz.doap -FILE: ../../../third_party/harfbuzz/meson_options.txt -FILE: ../../../third_party/harfbuzz/perf/benchmark-font.cc -FILE: ../../../third_party/harfbuzz/perf/benchmark-map.cc -FILE: ../../../third_party/harfbuzz/perf/benchmark-ot.cc -FILE: ../../../third_party/harfbuzz/perf/benchmark-set.cc -FILE: ../../../third_party/harfbuzz/perf/benchmark-shape.cc -FILE: ../../../third_party/harfbuzz/perf/benchmark-subset.cc -FILE: ../../../third_party/harfbuzz/perf/fonts/Amiri-Regular.ttf -FILE: ../../../third_party/harfbuzz/perf/fonts/NotoNastaliqUrdu-Regular.ttf -FILE: ../../../third_party/harfbuzz/perf/fonts/Roboto-Regular.ttf -FILE: ../../../third_party/harfbuzz/perf/texts/duployan.txt -FILE: ../../../third_party/harfbuzz/perf/texts/en-thelittleprince.txt -FILE: ../../../third_party/harfbuzz/perf/texts/en-words.txt -FILE: ../../../third_party/harfbuzz/perf/texts/fa-thelittleprince.txt -FILE: ../../../third_party/harfbuzz/perf/texts/fa-words.txt -FILE: ../../../third_party/harfbuzz/perf/texts/hi-words.txt -FILE: ../../../third_party/harfbuzz/src/ArabicPUASimplified.txt -FILE: ../../../third_party/harfbuzz/src/ArabicPUATraditional.txt -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/Anchor.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/AnchorFormat1.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/AnchorFormat2.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/AnchorFormat3.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/AnchorMatrix.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/ChainContextPos.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/Common.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/ContextPos.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/CursivePos.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/CursivePosFormat1.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/ExtensionPos.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/GPOS.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/LigatureArray.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/MarkArray.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/MarkBasePos.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/MarkBasePosFormat1.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/MarkLigPos.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/MarkLigPosFormat1.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/MarkMarkPos.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/MarkMarkPosFormat1.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/MarkRecord.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/PairPos.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/PairPosFormat1.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/PairPosFormat2.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/PairSet.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/PairValueRecord.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/PosLookup.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/PosLookupSubTable.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/SinglePos.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/SinglePosFormat1.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/SinglePosFormat2.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GPOS/ValueFormat.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/AlternateSet.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/AlternateSubst.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/AlternateSubstFormat1.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/ChainContextSubst.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/Common.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/ContextSubst.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/ExtensionSubst.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/GSUB.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/Ligature.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/LigatureSet.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/LigatureSubst.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/LigatureSubstFormat1.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/MultipleSubst.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/MultipleSubstFormat1.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubst.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/Sequence.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/SingleSubst.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/SingleSubstFormat1.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/SingleSubstFormat2.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/SubstLookup.hh -FILE: ../../../third_party/harfbuzz/src/OT/Layout/GSUB/SubstLookupSubTable.hh -FILE: ../../../third_party/harfbuzz/src/OT/glyf/CompositeGlyph.hh -FILE: ../../../third_party/harfbuzz/src/OT/glyf/Glyph.hh -FILE: ../../../third_party/harfbuzz/src/OT/glyf/GlyphHeader.hh -FILE: ../../../third_party/harfbuzz/src/OT/glyf/SimpleGlyph.hh -FILE: ../../../third_party/harfbuzz/src/OT/glyf/SubsetGlyph.hh -FILE: ../../../third_party/harfbuzz/src/OT/glyf/VarCompositeGlyph.hh -FILE: ../../../third_party/harfbuzz/src/OT/glyf/composite-iter.hh -FILE: ../../../third_party/harfbuzz/src/OT/glyf/coord-setter.hh -FILE: ../../../third_party/harfbuzz/src/OT/glyf/glyf-helpers.hh -FILE: ../../../third_party/harfbuzz/src/OT/glyf/glyf.hh -FILE: ../../../third_party/harfbuzz/src/OT/glyf/loca.hh -FILE: ../../../third_party/harfbuzz/src/OT/glyf/path-builder.hh -FILE: ../../../third_party/harfbuzz/src/harfbuzz-cairo.pc.in -FILE: ../../../third_party/harfbuzz/src/harfbuzz-config.cmake.in -FILE: ../../../third_party/harfbuzz/src/harfbuzz-gobject.pc.in -FILE: ../../../third_party/harfbuzz/src/harfbuzz-icu.pc.in -FILE: ../../../third_party/harfbuzz/src/harfbuzz-subset.cc -FILE: ../../../third_party/harfbuzz/src/harfbuzz-subset.pc.in -FILE: ../../../third_party/harfbuzz/src/harfbuzz.cc -FILE: ../../../third_party/harfbuzz/src/harfbuzz.pc.in -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-arabic-joining-list.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-arabic-pua.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-arabic-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-indic-table.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-use-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shaper-vowel-constraints.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-tag-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ucd-table.hh -FILE: ../../../third_party/harfbuzz/src/test-use-table.cc -FILE: ../../../third_party/harfbuzz/src/wasm/graphite/shape.cc -FILE: ../../../third_party/harfbuzz/src/wasm/rust/harfbuzz-wasm/Cargo.toml -FILE: ../../../third_party/harfbuzz/src/wasm/sample/c/shape-fallback.cc -FILE: ../../../third_party/harfbuzz/src/wasm/sample/c/shape-ot.cc -FILE: ../../../third_party/harfbuzz/src/wasm/sample/c/test.ttf -FILE: ../../../third_party/harfbuzz/src/wasm/sample/rust/hello-wasm/Cargo.toml -FILE: ../../../third_party/harfbuzz/src/wasm/sample/rust/hello-wasm/src/lib.rs -FILE: ../../../third_party/harfbuzz/subprojects/cairo.wrap -FILE: ../../../third_party/harfbuzz/subprojects/freetype2.wrap -FILE: ../../../third_party/harfbuzz/subprojects/glib.wrap -FILE: ../../../third_party/harfbuzz/subprojects/google-benchmark.wrap -FILE: ../../../third_party/harfbuzz/subprojects/ragel.wrap ----------------------------------------------------------------------------------------------------- -HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. -For parts of HarfBuzz that are licensed under different licenses see individual -files names COPYING in subdirectories where applicable. - -Copyright © 2010-2022 Google, Inc. -Copyright © 2015-2020 Ebrahim Byagowi -Copyright © 2019,2020 Facebook, Inc. -Copyright © 2012,2015 Mozilla Foundation -Copyright © 2011 Codethink Limited -Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) -Copyright © 2009 Keith Stribley -Copyright © 2011 Martin Hosken and SIL International -Copyright © 2007 Chris Wilson -Copyright © 2005,2006,2020,2021,2022,2023 Behdad Esfahbod -Copyright © 2004,2007,2008,2009,2010,2013,2021,2022,2023 Red Hat, Inc. -Copyright © 1998-2005 David Turner and Werner Lemberg -Copyright © 2016 Igalia S.L. -Copyright © 2022 Matthias Clasen -Copyright © 2018,2021 Khaled Hosny -Copyright © 2018,2019,2020 Adobe, Inc -Copyright © 2013-2015 Alexei Podtelezhnikov - -For full copyright notices consult the individual files in the package. - - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/docs/FTL.TXT -TYPE: LicenseType.freetype -FILE: ../../../third_party/freetype2/devel/ft2build.h -FILE: ../../../third_party/freetype2/devel/ftoption.h -FILE: ../../../third_party/freetype2/include/freetype-flutter-config/freetype/config/public-macros.h -FILE: ../../../third_party/freetype2/include/freetype-flutter-config/ftmodule.h -FILE: ../../../third_party/freetype2/include/freetype-flutter-config/ftoption.h -FILE: ../../../third_party/freetype2/include/freetype/config/ftconfig.h -FILE: ../../../third_party/freetype2/include/freetype/config/ftheader.h -FILE: ../../../third_party/freetype2/include/freetype/config/ftmodule.h -FILE: ../../../third_party/freetype2/include/freetype/config/ftoption.h -FILE: ../../../third_party/freetype2/include/freetype/config/ftstdlib.h -FILE: ../../../third_party/freetype2/include/freetype/config/integer-types.h -FILE: ../../../third_party/freetype2/include/freetype/config/mac-support.h -FILE: ../../../third_party/freetype2/include/freetype/config/public-macros.h -FILE: ../../../third_party/freetype2/include/freetype/freetype.h -FILE: ../../../third_party/freetype2/include/freetype/ftadvanc.h -FILE: ../../../third_party/freetype2/include/freetype/ftbbox.h -FILE: ../../../third_party/freetype2/include/freetype/ftbdf.h -FILE: ../../../third_party/freetype2/include/freetype/ftbitmap.h -FILE: ../../../third_party/freetype2/include/freetype/ftbzip2.h -FILE: ../../../third_party/freetype2/include/freetype/ftcache.h -FILE: ../../../third_party/freetype2/include/freetype/ftchapters.h -FILE: ../../../third_party/freetype2/include/freetype/ftcid.h -FILE: ../../../third_party/freetype2/include/freetype/ftcolor.h -FILE: ../../../third_party/freetype2/include/freetype/ftdriver.h -FILE: ../../../third_party/freetype2/include/freetype/fterrdef.h -FILE: ../../../third_party/freetype2/include/freetype/fterrors.h -FILE: ../../../third_party/freetype2/include/freetype/ftfntfmt.h -FILE: ../../../third_party/freetype2/include/freetype/ftgasp.h -FILE: ../../../third_party/freetype2/include/freetype/ftglyph.h -FILE: ../../../third_party/freetype2/include/freetype/ftgxval.h -FILE: ../../../third_party/freetype2/include/freetype/ftgzip.h -FILE: ../../../third_party/freetype2/include/freetype/ftimage.h -FILE: ../../../third_party/freetype2/include/freetype/ftincrem.h -FILE: ../../../third_party/freetype2/include/freetype/ftlcdfil.h -FILE: ../../../third_party/freetype2/include/freetype/ftlist.h -FILE: ../../../third_party/freetype2/include/freetype/ftlogging.h -FILE: ../../../third_party/freetype2/include/freetype/ftlzw.h -FILE: ../../../third_party/freetype2/include/freetype/ftmac.h -FILE: ../../../third_party/freetype2/include/freetype/ftmm.h -FILE: ../../../third_party/freetype2/include/freetype/ftmodapi.h -FILE: ../../../third_party/freetype2/include/freetype/ftmoderr.h -FILE: ../../../third_party/freetype2/include/freetype/ftotval.h -FILE: ../../../third_party/freetype2/include/freetype/ftoutln.h -FILE: ../../../third_party/freetype2/include/freetype/ftparams.h -FILE: ../../../third_party/freetype2/include/freetype/ftpfr.h -FILE: ../../../third_party/freetype2/include/freetype/ftrender.h -FILE: ../../../third_party/freetype2/include/freetype/ftsizes.h -FILE: ../../../third_party/freetype2/include/freetype/ftsnames.h -FILE: ../../../third_party/freetype2/include/freetype/ftstroke.h -FILE: ../../../third_party/freetype2/include/freetype/ftsynth.h -FILE: ../../../third_party/freetype2/include/freetype/ftsystem.h -FILE: ../../../third_party/freetype2/include/freetype/fttrigon.h -FILE: ../../../third_party/freetype2/include/freetype/fttypes.h -FILE: ../../../third_party/freetype2/include/freetype/ftwinfnt.h -FILE: ../../../third_party/freetype2/include/freetype/internal/autohint.h -FILE: ../../../third_party/freetype2/include/freetype/internal/cffotypes.h -FILE: ../../../third_party/freetype2/include/freetype/internal/cfftypes.h -FILE: ../../../third_party/freetype2/include/freetype/internal/compiler-macros.h -FILE: ../../../third_party/freetype2/include/freetype/internal/ftcalc.h -FILE: ../../../third_party/freetype2/include/freetype/internal/ftdebug.h -FILE: ../../../third_party/freetype2/include/freetype/internal/ftdrv.h -FILE: ../../../third_party/freetype2/include/freetype/internal/ftgloadr.h -FILE: ../../../third_party/freetype2/include/freetype/internal/ftmemory.h -FILE: ../../../third_party/freetype2/include/freetype/internal/ftobjs.h -FILE: ../../../third_party/freetype2/include/freetype/internal/ftpsprop.h -FILE: ../../../third_party/freetype2/include/freetype/internal/ftrfork.h -FILE: ../../../third_party/freetype2/include/freetype/internal/ftserv.h -FILE: ../../../third_party/freetype2/include/freetype/internal/ftstream.h -FILE: ../../../third_party/freetype2/include/freetype/internal/fttrace.h -FILE: ../../../third_party/freetype2/include/freetype/internal/ftvalid.h -FILE: ../../../third_party/freetype2/include/freetype/internal/psaux.h -FILE: ../../../third_party/freetype2/include/freetype/internal/pshints.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svbdf.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svcfftl.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svcid.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svfntfmt.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svgldict.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svgxval.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svkern.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svmetric.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svmm.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svotval.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svpfr.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svpostnm.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svprop.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svpscmap.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svpsinfo.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svsfnt.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svttcmap.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svtteng.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svttglyf.h -FILE: ../../../third_party/freetype2/include/freetype/internal/services/svwinfnt.h -FILE: ../../../third_party/freetype2/include/freetype/internal/sfnt.h -FILE: ../../../third_party/freetype2/include/freetype/internal/svginterface.h -FILE: ../../../third_party/freetype2/include/freetype/internal/t1types.h -FILE: ../../../third_party/freetype2/include/freetype/internal/tttypes.h -FILE: ../../../third_party/freetype2/include/freetype/internal/wofftypes.h -FILE: ../../../third_party/freetype2/include/freetype/otsvg.h -FILE: ../../../third_party/freetype2/include/freetype/t1tables.h -FILE: ../../../third_party/freetype2/include/freetype/ttnameid.h -FILE: ../../../third_party/freetype2/include/freetype/tttables.h -FILE: ../../../third_party/freetype2/include/freetype/tttags.h -FILE: ../../../third_party/freetype2/include/ft2build.h -FILE: ../../../third_party/freetype2/meson_options.txt -FILE: ../../../third_party/freetype2/modules.cfg -FILE: ../../../third_party/freetype2/src/autofit/afblue.c -FILE: ../../../third_party/freetype2/src/autofit/afblue.cin -FILE: ../../../third_party/freetype2/src/autofit/afblue.dat -FILE: ../../../third_party/freetype2/src/autofit/afblue.h -FILE: ../../../third_party/freetype2/src/autofit/afblue.hin -FILE: ../../../third_party/freetype2/src/autofit/afcjk.c -FILE: ../../../third_party/freetype2/src/autofit/afcjk.h -FILE: ../../../third_party/freetype2/src/autofit/afcover.h -FILE: ../../../third_party/freetype2/src/autofit/afdummy.c -FILE: ../../../third_party/freetype2/src/autofit/afdummy.h -FILE: ../../../third_party/freetype2/src/autofit/aferrors.h -FILE: ../../../third_party/freetype2/src/autofit/afglobal.c -FILE: ../../../third_party/freetype2/src/autofit/afglobal.h -FILE: ../../../third_party/freetype2/src/autofit/afhints.c -FILE: ../../../third_party/freetype2/src/autofit/afhints.h -FILE: ../../../third_party/freetype2/src/autofit/afindic.c -FILE: ../../../third_party/freetype2/src/autofit/afindic.h -FILE: ../../../third_party/freetype2/src/autofit/aflatin.c -FILE: ../../../third_party/freetype2/src/autofit/aflatin.h -FILE: ../../../third_party/freetype2/src/autofit/afloader.c -FILE: ../../../third_party/freetype2/src/autofit/afloader.h -FILE: ../../../third_party/freetype2/src/autofit/afmodule.c -FILE: ../../../third_party/freetype2/src/autofit/afmodule.h -FILE: ../../../third_party/freetype2/src/autofit/afranges.c -FILE: ../../../third_party/freetype2/src/autofit/afranges.h -FILE: ../../../third_party/freetype2/src/autofit/afscript.h -FILE: ../../../third_party/freetype2/src/autofit/afshaper.c -FILE: ../../../third_party/freetype2/src/autofit/afshaper.h -FILE: ../../../third_party/freetype2/src/autofit/afstyles.h -FILE: ../../../third_party/freetype2/src/autofit/aftypes.h -FILE: ../../../third_party/freetype2/src/autofit/afws-decl.h -FILE: ../../../third_party/freetype2/src/autofit/afws-iter.h -FILE: ../../../third_party/freetype2/src/autofit/autofit.c -FILE: ../../../third_party/freetype2/src/base/ftadvanc.c -FILE: ../../../third_party/freetype2/src/base/ftbase.c -FILE: ../../../third_party/freetype2/src/base/ftbase.h -FILE: ../../../third_party/freetype2/src/base/ftbbox.c -FILE: ../../../third_party/freetype2/src/base/ftbdf.c -FILE: ../../../third_party/freetype2/src/base/ftbitmap.c -FILE: ../../../third_party/freetype2/src/base/ftcalc.c -FILE: ../../../third_party/freetype2/src/base/ftcid.c -FILE: ../../../third_party/freetype2/src/base/ftcolor.c -FILE: ../../../third_party/freetype2/src/base/ftdbgmem.c -FILE: ../../../third_party/freetype2/src/base/ftdebug.c -FILE: ../../../third_party/freetype2/src/base/fterrors.c -FILE: ../../../third_party/freetype2/src/base/ftfntfmt.c -FILE: ../../../third_party/freetype2/src/base/ftfstype.c -FILE: ../../../third_party/freetype2/src/base/ftgasp.c -FILE: ../../../third_party/freetype2/src/base/ftgloadr.c -FILE: ../../../third_party/freetype2/src/base/ftglyph.c -FILE: ../../../third_party/freetype2/src/base/ftgxval.c -FILE: ../../../third_party/freetype2/src/base/ftinit.c -FILE: ../../../third_party/freetype2/src/base/ftlcdfil.c -FILE: ../../../third_party/freetype2/src/base/ftmac.c -FILE: ../../../third_party/freetype2/src/base/ftmm.c -FILE: ../../../third_party/freetype2/src/base/ftobjs.c -FILE: ../../../third_party/freetype2/src/base/ftotval.c -FILE: ../../../third_party/freetype2/src/base/ftoutln.c -FILE: ../../../third_party/freetype2/src/base/ftpatent.c -FILE: ../../../third_party/freetype2/src/base/ftpfr.c -FILE: ../../../third_party/freetype2/src/base/ftpsprop.c -FILE: ../../../third_party/freetype2/src/base/ftrfork.c -FILE: ../../../third_party/freetype2/src/base/ftsnames.c -FILE: ../../../third_party/freetype2/src/base/ftstream.c -FILE: ../../../third_party/freetype2/src/base/ftstroke.c -FILE: ../../../third_party/freetype2/src/base/ftsynth.c -FILE: ../../../third_party/freetype2/src/base/ftsystem.c -FILE: ../../../third_party/freetype2/src/base/fttrigon.c -FILE: ../../../third_party/freetype2/src/base/fttype1.c -FILE: ../../../third_party/freetype2/src/base/ftutil.c -FILE: ../../../third_party/freetype2/src/base/ftver.rc -FILE: ../../../third_party/freetype2/src/base/ftwinfnt.c -FILE: ../../../third_party/freetype2/src/bzip2/ftbzip2.c -FILE: ../../../third_party/freetype2/src/cache/ftcache.c -FILE: ../../../third_party/freetype2/src/cache/ftcbasic.c -FILE: ../../../third_party/freetype2/src/cache/ftccache.c -FILE: ../../../third_party/freetype2/src/cache/ftccache.h -FILE: ../../../third_party/freetype2/src/cache/ftccback.h -FILE: ../../../third_party/freetype2/src/cache/ftccmap.c -FILE: ../../../third_party/freetype2/src/cache/ftcerror.h -FILE: ../../../third_party/freetype2/src/cache/ftcglyph.c -FILE: ../../../third_party/freetype2/src/cache/ftcglyph.h -FILE: ../../../third_party/freetype2/src/cache/ftcimage.c -FILE: ../../../third_party/freetype2/src/cache/ftcimage.h -FILE: ../../../third_party/freetype2/src/cache/ftcmanag.c -FILE: ../../../third_party/freetype2/src/cache/ftcmanag.h -FILE: ../../../third_party/freetype2/src/cache/ftcmru.c -FILE: ../../../third_party/freetype2/src/cache/ftcmru.h -FILE: ../../../third_party/freetype2/src/cache/ftcsbits.c -FILE: ../../../third_party/freetype2/src/cache/ftcsbits.h -FILE: ../../../third_party/freetype2/src/cff/cff.c -FILE: ../../../third_party/freetype2/src/cff/cffcmap.c -FILE: ../../../third_party/freetype2/src/cff/cffcmap.h -FILE: ../../../third_party/freetype2/src/cff/cffdrivr.c -FILE: ../../../third_party/freetype2/src/cff/cffdrivr.h -FILE: ../../../third_party/freetype2/src/cff/cfferrs.h -FILE: ../../../third_party/freetype2/src/cff/cffgload.c -FILE: ../../../third_party/freetype2/src/cff/cffgload.h -FILE: ../../../third_party/freetype2/src/cff/cffload.c -FILE: ../../../third_party/freetype2/src/cff/cffload.h -FILE: ../../../third_party/freetype2/src/cff/cffobjs.c -FILE: ../../../third_party/freetype2/src/cff/cffobjs.h -FILE: ../../../third_party/freetype2/src/cff/cffparse.c -FILE: ../../../third_party/freetype2/src/cff/cffparse.h -FILE: ../../../third_party/freetype2/src/cff/cfftoken.h -FILE: ../../../third_party/freetype2/src/cid/ciderrs.h -FILE: ../../../third_party/freetype2/src/cid/cidgload.c -FILE: ../../../third_party/freetype2/src/cid/cidgload.h -FILE: ../../../third_party/freetype2/src/cid/cidload.c -FILE: ../../../third_party/freetype2/src/cid/cidload.h -FILE: ../../../third_party/freetype2/src/cid/cidobjs.c -FILE: ../../../third_party/freetype2/src/cid/cidobjs.h -FILE: ../../../third_party/freetype2/src/cid/cidparse.c -FILE: ../../../third_party/freetype2/src/cid/cidparse.h -FILE: ../../../third_party/freetype2/src/cid/cidriver.c -FILE: ../../../third_party/freetype2/src/cid/cidriver.h -FILE: ../../../third_party/freetype2/src/cid/cidtoken.h -FILE: ../../../third_party/freetype2/src/cid/type1cid.c -FILE: ../../../third_party/freetype2/src/dlg/dlgwrap.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvalid.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvalid.h -FILE: ../../../third_party/freetype2/src/gxvalid/gxvbsln.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvcommn.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvcommn.h -FILE: ../../../third_party/freetype2/src/gxvalid/gxverror.h -FILE: ../../../third_party/freetype2/src/gxvalid/gxvfeat.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvfeat.h -FILE: ../../../third_party/freetype2/src/gxvalid/gxvfgen.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvjust.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvkern.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvlcar.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmod.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmod.h -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort.h -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort0.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort1.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort2.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort4.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort5.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx.h -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx0.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx1.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx2.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx4.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx5.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvopbd.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvprop.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvtrak.c -FILE: ../../../third_party/freetype2/src/gzip/ftgzip.c -FILE: ../../../third_party/freetype2/src/lzw/ftlzw.c -FILE: ../../../third_party/freetype2/src/lzw/ftzopen.c -FILE: ../../../third_party/freetype2/src/lzw/ftzopen.h -FILE: ../../../third_party/freetype2/src/otvalid/otvalid.c -FILE: ../../../third_party/freetype2/src/otvalid/otvalid.h -FILE: ../../../third_party/freetype2/src/otvalid/otvbase.c -FILE: ../../../third_party/freetype2/src/otvalid/otvcommn.c -FILE: ../../../third_party/freetype2/src/otvalid/otvcommn.h -FILE: ../../../third_party/freetype2/src/otvalid/otverror.h -FILE: ../../../third_party/freetype2/src/otvalid/otvgdef.c -FILE: ../../../third_party/freetype2/src/otvalid/otvgpos.c -FILE: ../../../third_party/freetype2/src/otvalid/otvgpos.h -FILE: ../../../third_party/freetype2/src/otvalid/otvgsub.c -FILE: ../../../third_party/freetype2/src/otvalid/otvjstf.c -FILE: ../../../third_party/freetype2/src/otvalid/otvmath.c -FILE: ../../../third_party/freetype2/src/otvalid/otvmod.c -FILE: ../../../third_party/freetype2/src/otvalid/otvmod.h -FILE: ../../../third_party/freetype2/src/pcf/pcferror.h -FILE: ../../../third_party/freetype2/src/pfr/pfr.c -FILE: ../../../third_party/freetype2/src/pfr/pfrcmap.c -FILE: ../../../third_party/freetype2/src/pfr/pfrcmap.h -FILE: ../../../third_party/freetype2/src/pfr/pfrdrivr.c -FILE: ../../../third_party/freetype2/src/pfr/pfrdrivr.h -FILE: ../../../third_party/freetype2/src/pfr/pfrerror.h -FILE: ../../../third_party/freetype2/src/pfr/pfrgload.c -FILE: ../../../third_party/freetype2/src/pfr/pfrgload.h -FILE: ../../../third_party/freetype2/src/pfr/pfrload.c -FILE: ../../../third_party/freetype2/src/pfr/pfrload.h -FILE: ../../../third_party/freetype2/src/pfr/pfrobjs.c -FILE: ../../../third_party/freetype2/src/pfr/pfrobjs.h -FILE: ../../../third_party/freetype2/src/pfr/pfrsbit.c -FILE: ../../../third_party/freetype2/src/pfr/pfrsbit.h -FILE: ../../../third_party/freetype2/src/pfr/pfrtypes.h -FILE: ../../../third_party/freetype2/src/psaux/afmparse.c -FILE: ../../../third_party/freetype2/src/psaux/afmparse.h -FILE: ../../../third_party/freetype2/src/psaux/cffdecode.c -FILE: ../../../third_party/freetype2/src/psaux/cffdecode.h -FILE: ../../../third_party/freetype2/src/psaux/psarrst.c -FILE: ../../../third_party/freetype2/src/psaux/psarrst.h -FILE: ../../../third_party/freetype2/src/psaux/psaux.c -FILE: ../../../third_party/freetype2/src/psaux/psauxerr.h -FILE: ../../../third_party/freetype2/src/psaux/psauxmod.c -FILE: ../../../third_party/freetype2/src/psaux/psauxmod.h -FILE: ../../../third_party/freetype2/src/psaux/psblues.c -FILE: ../../../third_party/freetype2/src/psaux/psblues.h -FILE: ../../../third_party/freetype2/src/psaux/psconv.c -FILE: ../../../third_party/freetype2/src/psaux/psconv.h -FILE: ../../../third_party/freetype2/src/psaux/pserror.c -FILE: ../../../third_party/freetype2/src/psaux/pserror.h -FILE: ../../../third_party/freetype2/src/psaux/psfixed.h -FILE: ../../../third_party/freetype2/src/psaux/psfont.c -FILE: ../../../third_party/freetype2/src/psaux/psfont.h -FILE: ../../../third_party/freetype2/src/psaux/psft.c -FILE: ../../../third_party/freetype2/src/psaux/psft.h -FILE: ../../../third_party/freetype2/src/psaux/psglue.h -FILE: ../../../third_party/freetype2/src/psaux/pshints.c -FILE: ../../../third_party/freetype2/src/psaux/pshints.h -FILE: ../../../third_party/freetype2/src/psaux/psintrp.c -FILE: ../../../third_party/freetype2/src/psaux/psintrp.h -FILE: ../../../third_party/freetype2/src/psaux/psobjs.c -FILE: ../../../third_party/freetype2/src/psaux/psobjs.h -FILE: ../../../third_party/freetype2/src/psaux/psread.c -FILE: ../../../third_party/freetype2/src/psaux/psread.h -FILE: ../../../third_party/freetype2/src/psaux/psstack.c -FILE: ../../../third_party/freetype2/src/psaux/psstack.h -FILE: ../../../third_party/freetype2/src/psaux/pstypes.h -FILE: ../../../third_party/freetype2/src/psaux/t1cmap.c -FILE: ../../../third_party/freetype2/src/psaux/t1cmap.h -FILE: ../../../third_party/freetype2/src/psaux/t1decode.c -FILE: ../../../third_party/freetype2/src/psaux/t1decode.h -FILE: ../../../third_party/freetype2/src/pshinter/pshalgo.c -FILE: ../../../third_party/freetype2/src/pshinter/pshalgo.h -FILE: ../../../third_party/freetype2/src/pshinter/pshglob.c -FILE: ../../../third_party/freetype2/src/pshinter/pshglob.h -FILE: ../../../third_party/freetype2/src/pshinter/pshinter.c -FILE: ../../../third_party/freetype2/src/pshinter/pshmod.c -FILE: ../../../third_party/freetype2/src/pshinter/pshmod.h -FILE: ../../../third_party/freetype2/src/pshinter/pshnterr.h -FILE: ../../../third_party/freetype2/src/pshinter/pshrec.c -FILE: ../../../third_party/freetype2/src/pshinter/pshrec.h -FILE: ../../../third_party/freetype2/src/psnames/psmodule.c -FILE: ../../../third_party/freetype2/src/psnames/psmodule.h -FILE: ../../../third_party/freetype2/src/psnames/psnamerr.h -FILE: ../../../third_party/freetype2/src/psnames/psnames.c -FILE: ../../../third_party/freetype2/src/psnames/pstables.h -FILE: ../../../third_party/freetype2/src/raster/ftmisc.h -FILE: ../../../third_party/freetype2/src/raster/ftraster.c -FILE: ../../../third_party/freetype2/src/raster/ftraster.h -FILE: ../../../third_party/freetype2/src/raster/ftrend1.c -FILE: ../../../third_party/freetype2/src/raster/ftrend1.h -FILE: ../../../third_party/freetype2/src/raster/raster.c -FILE: ../../../third_party/freetype2/src/raster/rasterrs.h -FILE: ../../../third_party/freetype2/src/sdf/ftbsdf.c -FILE: ../../../third_party/freetype2/src/sdf/ftsdf.c -FILE: ../../../third_party/freetype2/src/sdf/ftsdf.h -FILE: ../../../third_party/freetype2/src/sdf/ftsdfcommon.c -FILE: ../../../third_party/freetype2/src/sdf/ftsdfcommon.h -FILE: ../../../third_party/freetype2/src/sdf/ftsdferrs.h -FILE: ../../../third_party/freetype2/src/sdf/ftsdfrend.c -FILE: ../../../third_party/freetype2/src/sdf/ftsdfrend.h -FILE: ../../../third_party/freetype2/src/sdf/sdf.c -FILE: ../../../third_party/freetype2/src/sfnt/pngshim.c -FILE: ../../../third_party/freetype2/src/sfnt/pngshim.h -FILE: ../../../third_party/freetype2/src/sfnt/sfdriver.c -FILE: ../../../third_party/freetype2/src/sfnt/sfdriver.h -FILE: ../../../third_party/freetype2/src/sfnt/sferrors.h -FILE: ../../../third_party/freetype2/src/sfnt/sfnt.c -FILE: ../../../third_party/freetype2/src/sfnt/sfobjs.c -FILE: ../../../third_party/freetype2/src/sfnt/sfobjs.h -FILE: ../../../third_party/freetype2/src/sfnt/sfwoff.c -FILE: ../../../third_party/freetype2/src/sfnt/sfwoff.h -FILE: ../../../third_party/freetype2/src/sfnt/sfwoff2.c -FILE: ../../../third_party/freetype2/src/sfnt/sfwoff2.h -FILE: ../../../third_party/freetype2/src/sfnt/ttbdf.c -FILE: ../../../third_party/freetype2/src/sfnt/ttbdf.h -FILE: ../../../third_party/freetype2/src/sfnt/ttcmap.c -FILE: ../../../third_party/freetype2/src/sfnt/ttcmap.h -FILE: ../../../third_party/freetype2/src/sfnt/ttcmapc.h -FILE: ../../../third_party/freetype2/src/sfnt/ttcolr.c -FILE: ../../../third_party/freetype2/src/sfnt/ttcolr.h -FILE: ../../../third_party/freetype2/src/sfnt/ttcpal.c -FILE: ../../../third_party/freetype2/src/sfnt/ttcpal.h -FILE: ../../../third_party/freetype2/src/sfnt/ttkern.c -FILE: ../../../third_party/freetype2/src/sfnt/ttkern.h -FILE: ../../../third_party/freetype2/src/sfnt/ttload.c -FILE: ../../../third_party/freetype2/src/sfnt/ttload.h -FILE: ../../../third_party/freetype2/src/sfnt/ttmtx.c -FILE: ../../../third_party/freetype2/src/sfnt/ttmtx.h -FILE: ../../../third_party/freetype2/src/sfnt/ttpost.c -FILE: ../../../third_party/freetype2/src/sfnt/ttpost.h -FILE: ../../../third_party/freetype2/src/sfnt/ttsbit.c -FILE: ../../../third_party/freetype2/src/sfnt/ttsbit.h -FILE: ../../../third_party/freetype2/src/sfnt/ttsvg.c -FILE: ../../../third_party/freetype2/src/sfnt/ttsvg.h -FILE: ../../../third_party/freetype2/src/sfnt/woff2tags.c -FILE: ../../../third_party/freetype2/src/sfnt/woff2tags.h -FILE: ../../../third_party/freetype2/src/smooth/ftgrays.c -FILE: ../../../third_party/freetype2/src/smooth/ftgrays.h -FILE: ../../../third_party/freetype2/src/smooth/ftsmerrs.h -FILE: ../../../third_party/freetype2/src/smooth/ftsmooth.c -FILE: ../../../third_party/freetype2/src/smooth/ftsmooth.h -FILE: ../../../third_party/freetype2/src/smooth/smooth.c -FILE: ../../../third_party/freetype2/src/svg/ftsvg.c -FILE: ../../../third_party/freetype2/src/svg/ftsvg.h -FILE: ../../../third_party/freetype2/src/svg/svg.c -FILE: ../../../third_party/freetype2/src/svg/svgtypes.h -FILE: ../../../third_party/freetype2/src/truetype/truetype.c -FILE: ../../../third_party/freetype2/src/truetype/ttdriver.c -FILE: ../../../third_party/freetype2/src/truetype/ttdriver.h -FILE: ../../../third_party/freetype2/src/truetype/tterrors.h -FILE: ../../../third_party/freetype2/src/truetype/ttgload.c -FILE: ../../../third_party/freetype2/src/truetype/ttgload.h -FILE: ../../../third_party/freetype2/src/truetype/ttgxvar.c -FILE: ../../../third_party/freetype2/src/truetype/ttgxvar.h -FILE: ../../../third_party/freetype2/src/truetype/ttinterp.c -FILE: ../../../third_party/freetype2/src/truetype/ttinterp.h -FILE: ../../../third_party/freetype2/src/truetype/ttobjs.c -FILE: ../../../third_party/freetype2/src/truetype/ttobjs.h -FILE: ../../../third_party/freetype2/src/truetype/ttpload.c -FILE: ../../../third_party/freetype2/src/truetype/ttpload.h -FILE: ../../../third_party/freetype2/src/truetype/ttsubpix.c -FILE: ../../../third_party/freetype2/src/truetype/ttsubpix.h -FILE: ../../../third_party/freetype2/src/type1/t1afm.c -FILE: ../../../third_party/freetype2/src/type1/t1afm.h -FILE: ../../../third_party/freetype2/src/type1/t1driver.c -FILE: ../../../third_party/freetype2/src/type1/t1driver.h -FILE: ../../../third_party/freetype2/src/type1/t1errors.h -FILE: ../../../third_party/freetype2/src/type1/t1gload.c -FILE: ../../../third_party/freetype2/src/type1/t1gload.h -FILE: ../../../third_party/freetype2/src/type1/t1load.c -FILE: ../../../third_party/freetype2/src/type1/t1load.h -FILE: ../../../third_party/freetype2/src/type1/t1objs.c -FILE: ../../../third_party/freetype2/src/type1/t1objs.h -FILE: ../../../third_party/freetype2/src/type1/t1parse.c -FILE: ../../../third_party/freetype2/src/type1/t1parse.h -FILE: ../../../third_party/freetype2/src/type1/t1tokens.h -FILE: ../../../third_party/freetype2/src/type1/type1.c -FILE: ../../../third_party/freetype2/src/type42/t42drivr.c -FILE: ../../../third_party/freetype2/src/type42/t42drivr.h -FILE: ../../../third_party/freetype2/src/type42/t42error.h -FILE: ../../../third_party/freetype2/src/type42/t42objs.c -FILE: ../../../third_party/freetype2/src/type42/t42objs.h -FILE: ../../../third_party/freetype2/src/type42/t42parse.c -FILE: ../../../third_party/freetype2/src/type42/t42parse.h -FILE: ../../../third_party/freetype2/src/type42/t42types.h -FILE: ../../../third_party/freetype2/src/type42/type42.c -FILE: ../../../third_party/freetype2/src/winfonts/fnterrs.h -FILE: ../../../third_party/freetype2/src/winfonts/winfnt.c -FILE: ../../../third_party/freetype2/src/winfonts/winfnt.h -FILE: ../../../third_party/freetype2/subprojects/libpng.wrap -FILE: ../../../third_party/freetype2/subprojects/zlib.wrap ----------------------------------------------------------------------------------------------------- -The FreeType Project LICENSE ----------------------------- - - 2006-Jan-27 - - Copyright 1996-2002, 2006 by - David Turner, Robert Wilhelm, and Werner Lemberg - - - -Introduction -============ - - The FreeType Project is distributed in several archive packages; - some of them may contain, in addition to the FreeType font engine, - various tools and contributions which rely on, or relate to, the - FreeType Project. - - This license applies to all files found in such packages, and - which do not fall under their own explicit license. The license - affects thus the FreeType font engine, the test programs, - documentation and makefiles, at the very least. - - This license was inspired by the BSD, Artistic, and IJG - (Independent JPEG Group) licenses, which all encourage inclusion - and use of free software in commercial and freeware products - alike. As a consequence, its main points are that: - - o We don't promise that this software works. However, we will be - interested in any kind of bug reports. (`as is' distribution) - - o You can use this software for whatever you want, in parts or - full form, without having to pay us. (`royalty-free' usage) - - o You may not pretend that you wrote this software. If you use - it, or only parts of it, in a program, you must acknowledge - somewhere in your documentation that you have used the - FreeType code. (`credits') - - We specifically permit and encourage the inclusion of this - software, with or without modifications, in commercial products. - We disclaim all warranties covering The FreeType Project and - assume no liability related to The FreeType Project. - - - Finally, many people asked us for a preferred form for a - credit/disclaimer to use in compliance with this license. We thus - encourage you to use the following text: - - """ - Portions of this software are copyright © The FreeType - Project (www.freetype.org). All rights reserved. - """ - - Please replace with the value from the FreeType version you - actually use. - - -Legal Terms -=========== - -0. Definitions --------------- - - Throughout this license, the terms `package', `FreeType Project', - and `FreeType archive' refer to the set of files originally - distributed by the authors (David Turner, Robert Wilhelm, and - Werner Lemberg) as the `FreeType Project', be they named as alpha, - beta or final release. - - `You' refers to the licensee, or person using the project, where - `using' is a generic term including compiling the project's source - code as well as linking it to form a `program' or `executable'. - This program is referred to as `a program using the FreeType - engine'. - - This license applies to all files distributed in the original - FreeType Project, including all source code, binaries and - documentation, unless otherwise stated in the file in its - original, unmodified form as distributed in the original archive. - If you are unsure whether or not a particular file is covered by - this license, you must contact us to verify this. - - The FreeType Project is copyright (C) 1996-2000 by David Turner, - Robert Wilhelm, and Werner Lemberg. All rights reserved except as - specified below. - -1. No Warranty --------------- - - THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY - KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO - USE, OF THE FREETYPE PROJECT. - -2. Redistribution ------------------ - - This license grants a worldwide, royalty-free, perpetual and - irrevocable right and license to use, execute, perform, compile, - display, copy, create derivative works of, distribute and - sublicense the FreeType Project (in both source and object code - forms) and derivative works thereof for any purpose; and to - authorize others to exercise some or all of the rights granted - herein, subject to the following conditions: - - o Redistribution of source code must retain this license file - (`FTL.TXT') unaltered; any additions, deletions or changes to - the original files must be clearly indicated in accompanying - documentation. The copyright notices of the unaltered, - original files must be preserved in all copies of source - files. - - o Redistribution in binary form must provide a disclaimer that - states that the software is based in part of the work of the - FreeType Team, in the distribution documentation. We also - encourage you to put an URL to the FreeType web page in your - documentation, though this isn't mandatory. - - These conditions apply to any software derived from or based on - the FreeType Project, not just the unmodified files. If you use - our work, you must acknowledge us. However, no fee need be paid - to us. - -3. Advertising --------------- - - Neither the FreeType authors and contributors nor you shall use - the name of the other for commercial, advertising, or promotional - purposes without specific prior written permission. - - We suggest, but do not require, that you use one or more of the - following phrases to refer to this software in your documentation - or advertising materials: `FreeType Project', `FreeType Engine', - `FreeType library', or `FreeType Distribution'. - - As you have not signed this license, you are not required to - accept it. However, as the FreeType Project is copyrighted - material, only this license, or another one contracted with the - authors, grants you the right to use, distribute, and modify it. - Therefore, by using, distributing, or modifying the FreeType - Project, you indicate that you understand and accept all the terms - of this license. - -4. Contacts ------------ - - There are two mailing lists related to FreeType: - - o freetype@nongnu.org - - Discusses general use and applications of FreeType, as well as - future and wanted additions to the library and distribution. - If you are looking for support, start in this list if you - haven't found anything to help you in the documentation. - - o freetype-devel@nongnu.org - - Discusses bugs, as well as engine internals, design issues, - specific licenses, porting, etc. - - Our home page can be found at - - https://www.freetype.org - - ---- end of FTL.TXT --- -==================================================================================================== - ==================================================================================================== LIBRARY: zlib ORIGIN: ../../../third_party/zlib/contrib/minizip/unzip.h @@ -41841,46 +37119,6 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. ==================================================================================================== -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/base/md5.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/freetype2/src/base/md5.h ----------------------------------------------------------------------------------------------------- -This software was written by Alexander Peslyak in 2001. No copyright is -claimed, and the software is hereby placed in the public domain. -In case this attempt to disclaim copyright and place the software in the -public domain is deemed null and void, then the software is -Copyright (c) 2001 Alexander Peslyak and it is hereby released to the -general public under the following terms: - -Redistribution and use in source and binary forms, with or without -modification, are permitted. - -There's ABSOLUTELY NO WARRANTY, express or implied. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/base/md5.c -TYPE: LicenseType.unknown -FILE: ../../../third_party/freetype2/src/base/md5.c ----------------------------------------------------------------------------------------------------- -This software was written by Alexander Peslyak in 2001. No copyright is -claimed, and the software is hereby placed in the public domain. -In case this attempt to disclaim copyright and place the software in the -public domain is deemed null and void, then the software is -Copyright (c) 2001 Alexander Peslyak and it is hereby released to the -general public under the following terms: - -Redistribution and use in source and binary forms, with or without -modification, are permitted. - -There's ABSOLUTELY NO WARRANTY, express or implied. - -(This is a heavily cut-down "BSD license".) -==================================================================================================== - ==================================================================================================== LIBRARY: icu ORIGIN: ../../../third_party/icu/LICENSE @@ -42381,7 +37619,6 @@ without express or implied warranty. ==================================================================================================== ==================================================================================================== -LIBRARY: harfbuzz LIBRARY: icu ORIGIN: http://unicode.org/copyright.html#Exhibit1 referenced by ../../../third_party/icu/source/data/translit/Hans_Hant.txt ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/APIChangeReport.html @@ -47773,7 +43010,6 @@ ORIGIN: http://www.unicode.org/copyright.html#License referenced by ../../../thi ORIGIN: http://www.unicode.org/copyright.html#License referenced by ../../../third_party/icu/source/data/coll/es__TRADITIONAL.txt ORIGIN: https://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/emojiprops.cpp ORIGIN: https://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/emojiprops.h -ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_party/harfbuzz/src/hb-unicode-emoji-table.hh ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_party/icu/source/data/unidata/CaseFolding.txt ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_party/icu/source/data/unidata/DerivedCoreProperties.txt ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_party/icu/source/data/unidata/DerivedNormalizationProps.txt @@ -47786,7 +43022,6 @@ ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_p ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_party/icu/source/data/unidata/emoji-zwj-sequences.txt ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_party/icu/source/data/unidata/norm2/uts46.txt TYPE: LicenseType.unicode -FILE: ../../../third_party/harfbuzz/src/hb-unicode-emoji-table.hh FILE: ../../../third_party/icu/APIChangeReport.html FILE: ../../../third_party/icu/source/Doxyfile.in FILE: ../../../third_party/icu/source/common/appendable.cpp @@ -53376,4 +48611,4 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. ==================================================================================================== -Total license count: 702 +Total license count: 580 diff --git a/ci/licenses_golden/tool_signature b/ci/licenses_golden/tool_signature index d02fe071da3ba..14dbbaeeaa38d 100644 --- a/ci/licenses_golden/tool_signature +++ b/ci/licenses_golden/tool_signature @@ -1,2 +1,2 @@ -Signature: f823bf2a897af27f12f1c16a83c3e216 +Signature: 49d0673446dde28e2f193b3407a9904e diff --git a/display_list/BUILD.gn b/display_list/BUILD.gn index 1d5657b404133..9e34768f81bd0 100644 --- a/display_list/BUILD.gn +++ b/display_list/BUILD.gn @@ -138,7 +138,8 @@ if (enable_unittests) { defines += [ "_USE_MATH_DEFINES" ] } - # This is needed for //third_party/googletest for linking zircon symbols. + # This is needed for //flutter/third_party/googletest for linking zircon + # symbols. if (is_fuchsia) { libs = [ "${fuchsia_sdk_path}/arch/${target_cpu}/sysroot/lib/libzircon.so" ] @@ -169,7 +170,8 @@ if (enable_unittests) { defines += [ "_USE_MATH_DEFINES" ] } - # This is needed for //third_party/googletest for linking zircon symbols. + # This is needed for //flutter/third_party/googletest for linking zircon + # symbols. if (is_fuchsia) { libs = [ "${fuchsia_sdk_path}/arch/${target_cpu}/sysroot/lib/libzircon.so" ] diff --git a/flow/BUILD.gn b/flow/BUILD.gn index d648e01f392ce..bcbb6541beaa1 100644 --- a/flow/BUILD.gn +++ b/flow/BUILD.gn @@ -134,7 +134,7 @@ if (enable_unittests) { public_deps = [ "//flutter/testing:skia", - "//third_party/googletest:gtest", + "//flutter/third_party/googletest:gtest", ] deps = [ @@ -195,7 +195,7 @@ if (enable_unittests) { "//flutter/skia", "//flutter/testing:skia", "//flutter/testing:testing_lib", - "//third_party/googletest:gtest", + "//flutter/third_party/googletest:gtest", ] if (!defined(defines)) { diff --git a/fml/BUILD.gn b/fml/BUILD.gn index 8d70fc1aa4b9b..409f73bf2a63f 100644 --- a/fml/BUILD.gn +++ b/fml/BUILD.gn @@ -408,7 +408,8 @@ if (enable_unittests) { "$fuchsia_sdk_root/pkg:sys_component_cpp_testing", ] - # This is needed for //third_party/googletest for linking zircon symbols. + # This is needed for //flutter/third_party/googletest for linking zircon + # symbols. libs = [ "${fuchsia_sdk_path}/arch/${target_cpu}/sysroot/lib/libzircon.so" ] } diff --git a/impeller/golden_tests/BUILD.gn b/impeller/golden_tests/BUILD.gn index efd302e762831..7e2949a547023 100644 --- a/impeller/golden_tests/BUILD.gn +++ b/impeller/golden_tests/BUILD.gn @@ -83,10 +83,10 @@ if (is_mac) { "//flutter/impeller/aiks", "//flutter/impeller/aiks:aiks_unittests_golden", "//flutter/impeller/fixtures", + "//flutter/third_party/googletest:gtest", "//flutter/third_party/swiftshader", "//third_party/angle:libEGL", "//third_party/angle:libGLESv2", - "//third_party/googletest:gtest", ] } } diff --git a/shell/common/BUILD.gn b/shell/common/BUILD.gn index 8c60b7e3954cc..90449786b8187 100644 --- a/shell/common/BUILD.gn +++ b/shell/common/BUILD.gn @@ -332,7 +332,7 @@ if (enable_unittests) { "//flutter/shell/profiling:profiling_unittests", "//flutter/shell/version", "//flutter/testing:fixture_test", - "//third_party/googletest:gmock", + "//flutter/third_party/googletest:gmock", ] if (is_fuchsia) { diff --git a/shell/platform/android/BUILD.gn b/shell/platform/android/BUILD.gn index fc02bc223c1e3..ac495887e0934 100644 --- a/shell/platform/android/BUILD.gn +++ b/shell/platform/android/BUILD.gn @@ -56,8 +56,8 @@ executable("flutter_shell_native_unittests") { ":flutter_shell_native_src", "//flutter/fml", "//flutter/shell/platform/android/jni:jni_mock", - "//third_party/googletest:gmock", - "//third_party/googletest:gtest", + "//flutter/third_party/googletest:gmock", + "//flutter/third_party/googletest:gtest", ] } diff --git a/shell/platform/android/surface/BUILD.gn b/shell/platform/android/surface/BUILD.gn index 82bb9a260c30a..ecc46d1145f6e 100644 --- a/shell/platform/android/surface/BUILD.gn +++ b/shell/platform/android/surface/BUILD.gn @@ -53,8 +53,8 @@ source_set("surface_mock") { ":surface", "//flutter/flow", "//flutter/shell/gpu:gpu_surface_gl", - "//third_party/googletest:gmock", - "//third_party/googletest:gtest", + "//flutter/third_party/googletest:gmock", + "//flutter/third_party/googletest:gtest", ] if (shell_enable_vulkan) { diff --git a/shell/platform/fuchsia/dart_runner/BUILD.gn b/shell/platform/fuchsia/dart_runner/BUILD.gn index 2bc29582296eb..e7596e83317bf 100644 --- a/shell/platform/fuchsia/dart_runner/BUILD.gn +++ b/shell/platform/fuchsia/dart_runner/BUILD.gn @@ -315,7 +315,8 @@ if (enable_unittests) { sources = [ "tests/suite_impl_unittests.cc" ] - # This is needed for //third_party/googletest for linking zircon symbols. + # This is needed for //flutter/third_party/googletest for linking zircon + # symbols. libs = [ "$fuchsia_sdk_path/arch/$target_cpu/sysroot/lib/libzircon.so" ] deps = [ @@ -323,7 +324,7 @@ if (enable_unittests) { "$dart_src/runtime:libdart_jit", "$dart_src/runtime/platform:libdart_platform_jit", "//flutter/fml", - "//third_party/googletest:gtest_main", + "//flutter/third_party/googletest:gtest_main", ] } diff --git a/shell/platform/fuchsia/dart_runner/tests/startup_integration_test/dart_aot_runner/BUILD.gn b/shell/platform/fuchsia/dart_runner/tests/startup_integration_test/dart_aot_runner/BUILD.gn index 4f7d9e6ee406a..875b516596801 100644 --- a/shell/platform/fuchsia/dart_runner/tests/startup_integration_test/dart_aot_runner/BUILD.gn +++ b/shell/platform/fuchsia/dart_runner/tests/startup_integration_test/dart_aot_runner/BUILD.gn @@ -20,7 +20,8 @@ executable("dart-aot-runner-integration-test-bin") { sources = [ "dart-aot-runner-integration-test.cc" ] - # This is needed for //third_party/googletest for linking zircon symbols. + # This is needed for //flutter/third_party/googletest for linking zircon + # symbols. libs = [ "$fuchsia_sdk_path/arch/$target_cpu/sysroot/lib/libzircon.so" ] deps = [ @@ -34,8 +35,8 @@ executable("dart-aot-runner-integration-test-bin") { "../dart_echo_server:aot_echo_package", "//flutter/fml", "//flutter/shell/platform/fuchsia/dart_runner/fidl:dart_test", - "//third_party/googletest:gtest", - "//third_party/googletest:gtest_main", + "//flutter/third_party/googletest:gtest", + "//flutter/third_party/googletest:gtest_main", ] } diff --git a/shell/platform/fuchsia/dart_runner/tests/startup_integration_test/dart_jit_runner/BUILD.gn b/shell/platform/fuchsia/dart_runner/tests/startup_integration_test/dart_jit_runner/BUILD.gn index 2ac51d974be12..f14b70096f673 100644 --- a/shell/platform/fuchsia/dart_runner/tests/startup_integration_test/dart_jit_runner/BUILD.gn +++ b/shell/platform/fuchsia/dart_runner/tests/startup_integration_test/dart_jit_runner/BUILD.gn @@ -20,7 +20,8 @@ executable("dart-jit-runner-integration-test-bin") { sources = [ "dart-jit-runner-integration-test.cc" ] - # This is needed for //third_party/googletest for linking zircon symbols. + # This is needed for //flutter/third_party/googletest for linking zircon + # symbols. libs = [ "$fuchsia_sdk_path/arch/$target_cpu/sysroot/lib/libzircon.so" ] deps = [ @@ -34,8 +35,8 @@ executable("dart-jit-runner-integration-test-bin") { "../dart_echo_server:jit_echo_package", "//flutter/fml", "//flutter/shell/platform/fuchsia/dart_runner/fidl:dart_test", - "//third_party/googletest:gtest", - "//third_party/googletest:gtest_main", + "//flutter/third_party/googletest:gtest", + "//flutter/third_party/googletest:gtest_main", ] } diff --git a/shell/platform/fuchsia/flutter/BUILD.gn b/shell/platform/fuchsia/flutter/BUILD.gn index e027b1ee82068..6325b134f3a9e 100644 --- a/shell/platform/fuchsia/flutter/BUILD.gn +++ b/shell/platform/fuchsia/flutter/BUILD.gn @@ -504,7 +504,8 @@ if (enable_unittests) { "vsync_waiter_unittest.cc", ] - # This is needed for //third_party/googletest for linking zircon symbols. + # This is needed for //flutter/third_party/googletest for linking zircon + # symbols. libs = [ "$fuchsia_sdk_path/arch/$target_cpu/sysroot/lib/libzircon.so" ] # The use of these dependencies is temporary and will be moved behind the @@ -537,7 +538,8 @@ if (enable_unittests) { sources = [ "runner_tzdata_unittest.cc" ] - # This is needed for //third_party/googletest for linking zircon symbols. + # This is needed for //flutter/third_party/googletest for linking zircon + # symbols. libs = [ "$fuchsia_sdk_path/arch/$target_cpu/sysroot/lib/libzircon.so" ] # The use of these dependencies is temporary and will be moved behind the @@ -563,7 +565,8 @@ if (enable_unittests) { sources = [ "runner_tzdata_missing_unittest.cc" ] - # This is needed for //third_party/googletest for linking zircon symbols. + # This is needed for //flutter/third_party/googletest for linking zircon + # symbols. libs = [ "$fuchsia_sdk_path/arch/$target_cpu/sysroot/lib/libzircon.so" ] # The use of these dependencies is temporary and will be moved behind the diff --git a/shell/platform/fuchsia/flutter/tests/integration/embedder/BUILD.gn b/shell/platform/fuchsia/flutter/tests/integration/embedder/BUILD.gn index bc36d9033e075..4c16bb93e7b2c 100644 --- a/shell/platform/fuchsia/flutter/tests/integration/embedder/BUILD.gn +++ b/shell/platform/fuchsia/flutter/tests/integration/embedder/BUILD.gn @@ -19,7 +19,8 @@ executable("flutter-embedder-test-bin") { sources = [ "flutter-embedder-test.cc" ] - # This is needed for //third_party/googletest for linking zircon symbols. + # This is needed for //flutter/third_party/googletest for linking zircon + # symbols. libs = [ "$fuchsia_sdk_path/arch/$target_cpu/sysroot/lib/libzircon.so" ] deps = [ @@ -40,8 +41,8 @@ executable("flutter-embedder-test-bin") { "//flutter/fml", "//flutter/shell/platform/fuchsia/flutter/tests/integration/utils:check_view", "//flutter/shell/platform/fuchsia/flutter/tests/integration/utils:screenshot", - "//third_party/googletest:gtest", - "//third_party/googletest:gtest_main", + "//flutter/third_party/googletest:gtest", + "//flutter/third_party/googletest:gtest_main", ] } diff --git a/shell/platform/fuchsia/flutter/tests/integration/mouse-input/BUILD.gn b/shell/platform/fuchsia/flutter/tests/integration/mouse-input/BUILD.gn index 661d374f4ecf2..4239414f795c3 100644 --- a/shell/platform/fuchsia/flutter/tests/integration/mouse-input/BUILD.gn +++ b/shell/platform/fuchsia/flutter/tests/integration/mouse-input/BUILD.gn @@ -18,7 +18,8 @@ executable("mouse-input-test-bin") { output_name = "mouse-input-test" sources = [ "mouse-input-test.cc" ] - # This is needed for //third_party/googletest for linking zircon symbols. + # This is needed for //flutter/third_party/googletest for linking zircon + # symbols. libs = [ "$fuchsia_sdk_path/arch/$target_cpu/sysroot/lib/libzircon.so" ] deps = [ @@ -47,8 +48,8 @@ executable("mouse-input-test-bin") { "mouse-input-view:package", "//flutter/fml", "//flutter/shell/platform/fuchsia/flutter/tests/integration/utils:portable_ui_test", - "//third_party/googletest:gtest", - "//third_party/googletest:gtest_main", + "//flutter/third_party/googletest:gtest", + "//flutter/third_party/googletest:gtest_main", ] } diff --git a/shell/platform/fuchsia/flutter/tests/integration/text-input/BUILD.gn b/shell/platform/fuchsia/flutter/tests/integration/text-input/BUILD.gn index 41bcd16e90a80..17bfba8e2e00c 100644 --- a/shell/platform/fuchsia/flutter/tests/integration/text-input/BUILD.gn +++ b/shell/platform/fuchsia/flutter/tests/integration/text-input/BUILD.gn @@ -18,7 +18,8 @@ executable("text-input-test-bin") { output_name = "text-input-test" sources = [ "text-input-test.cc" ] - # This is needed for //third_party/googletest for linking zircon symbols. + # This is needed for //flutter/third_party/googletest for linking zircon + # symbols. libs = [ "$fuchsia_sdk_path/arch/$target_cpu/sysroot/lib/libzircon.so" ] deps = [ @@ -42,8 +43,8 @@ executable("text-input-test-bin") { "//flutter/fml", "//flutter/shell/platform/fuchsia/flutter/tests/integration/utils:check_view", "//flutter/shell/platform/fuchsia/flutter/tests/integration/utils:portable_ui_test", - "//third_party/googletest:gtest", - "//third_party/googletest:gtest_main", + "//flutter/third_party/googletest:gtest", + "//flutter/third_party/googletest:gtest_main", ] } diff --git a/shell/platform/fuchsia/flutter/tests/integration/touch-input/BUILD.gn b/shell/platform/fuchsia/flutter/tests/integration/touch-input/BUILD.gn index 40942926e41f0..3c2c245a50a93 100644 --- a/shell/platform/fuchsia/flutter/tests/integration/touch-input/BUILD.gn +++ b/shell/platform/fuchsia/flutter/tests/integration/touch-input/BUILD.gn @@ -18,7 +18,8 @@ executable("touch-input-test-bin") { output_name = "touch-input-test" sources = [ "touch-input-test.cc" ] - # This is needed for //third_party/googletest for linking zircon symbols. + # This is needed for //flutter/third_party/googletest for linking zircon + # symbols. libs = [ "$fuchsia_sdk_path/arch/$target_cpu/sysroot/lib/libzircon.so" ] deps = [ @@ -48,8 +49,8 @@ executable("touch-input-test-bin") { "touch-input-view:package", "//flutter/fml", "//flutter/shell/platform/fuchsia/flutter/tests/integration/utils:portable_ui_test", - "//third_party/googletest:gtest", - "//third_party/googletest:gtest_main", + "//flutter/third_party/googletest:gtest", + "//flutter/third_party/googletest:gtest_main", ] } diff --git a/shell/platform/fuchsia/runtime/dart/utils/BUILD.gn b/shell/platform/fuchsia/runtime/dart/utils/BUILD.gn index 09b31099ef5ee..0892d2e888f73 100644 --- a/shell/platform/fuchsia/runtime/dart/utils/BUILD.gn +++ b/shell/platform/fuchsia/runtime/dart/utils/BUILD.gn @@ -92,7 +92,8 @@ executable("dart_utils_unittests") { sources = [ "build_info_unittests.cc" ] libs = [ - # This is needed for //third_party/googletest for linking zircon symbols. + # This is needed for //flutter/third_party/googletest for linking zircon + # symbols. "$fuchsia_sdk_path/arch/$target_cpu/sysroot/lib/libzircon.so", ] diff --git a/skia/BUILD.gn b/skia/BUILD.gn index 5b914ce1b7d31..0fa800feefd95 100644 --- a/skia/BUILD.gn +++ b/skia/BUILD.gn @@ -561,7 +561,7 @@ optional("typeface_freetype") { enabled = skia_use_freetype public_defines = [ "SK_TYPEFACE_FACTORY_FREETYPE" ] - deps = [ "//third_party/freetype2" ] + deps = [ "//flutter/third_party/freetype2" ] sources = [ "$_skia_root/src/ports/SkFontHost_FreeType.cpp", "$_skia_root/src/ports/SkFontHost_FreeType_common.cpp", diff --git a/skia/modules/skshaper/BUILD.gn b/skia/modules/skshaper/BUILD.gn index 81414e54276a7..751df430fc8c2 100644 --- a/skia/modules/skshaper/BUILD.gn +++ b/skia/modules/skshaper/BUILD.gn @@ -51,7 +51,7 @@ if (skia_enable_skshaper) { sources += skia_shaper_harfbuzz_sources deps += [ "../skunicode", - "//third_party/harfbuzz", + "//flutter/third_party/harfbuzz", ] } configs += [ "../../:skia_private" ] diff --git a/testing/BUILD.gn b/testing/BUILD.gn index ef13c07ddafd9..a6e20e72b9f23 100644 --- a/testing/BUILD.gn +++ b/testing/BUILD.gn @@ -40,8 +40,8 @@ source_set("testing_lib") { public_deps = [ "//flutter/display_list", "//flutter/fml", - "//third_party/googletest:gmock", - "//third_party/googletest:gtest", + "//flutter/third_party/googletest:gmock", + "//flutter/third_party/googletest:gtest", ] public_configs = [ "//flutter:config" ] } @@ -139,7 +139,7 @@ if (is_mac || is_ios) { deps = [ "//flutter/fml", - "//third_party/googletest:gtest", + "//flutter/third_party/googletest:gtest", ] } } diff --git a/third_party/tonic/tests/BUILD.gn b/third_party/tonic/tests/BUILD.gn index fe53cce096041..45619e91395c7 100644 --- a/third_party/tonic/tests/BUILD.gn +++ b/third_party/tonic/tests/BUILD.gn @@ -30,7 +30,7 @@ executable("tonic_unittests") { "//flutter/runtime:runtime", "//flutter/testing", "//flutter/testing:fixture_test", - "//third_party/googletest:gtest", + "//flutter/third_party/googletest:gtest", ] deps = [ "../:tonic" ] diff --git a/third_party/txt/BUILD.gn b/third_party/txt/BUILD.gn index e5d97d024b249..fea46cd4e4116 100644 --- a/third_party/txt/BUILD.gn +++ b/third_party/txt/BUILD.gn @@ -83,7 +83,7 @@ source_set("txt") { "//flutter/fml", "//flutter/impeller/typographer/backends/skia:typographer_skia_backend", "//flutter/skia", - "//third_party/harfbuzz", + "//flutter/third_party/harfbuzz", "//third_party/icu", ] @@ -169,7 +169,8 @@ if (enable_unittests) { "//flutter/testing:testing_lib", ] - # This is needed for //third_party/googletest for linking zircon symbols. + # This is needed for //flutter/third_party/googletest for linking zircon + # symbols. if (is_fuchsia) { libs = [ "${fuchsia_sdk_path}/arch/${target_cpu}/sysroot/lib/libzircon.so" ] diff --git a/tools/font_subset/BUILD.gn b/tools/font_subset/BUILD.gn index ef202a6f938b2..14d23cf6fc031 100644 --- a/tools/font_subset/BUILD.gn +++ b/tools/font_subset/BUILD.gn @@ -12,7 +12,7 @@ executable("_font-subset") { "main.cc", ] - deps = [ "//third_party/harfbuzz:harfbuzz_subset" ] + deps = [ "//flutter/third_party/harfbuzz:harfbuzz_subset" ] if (is_mac) { frameworks = [ diff --git a/tools/licenses/lib/main.dart b/tools/licenses/lib/main.dart index 76c2d592f658e..24cc0728d5438 100644 --- a/tools/licenses/lib/main.dart +++ b/tools/licenses/lib/main.dart @@ -991,6 +991,7 @@ class _RepositoryDirectory extends _RepositoryEntry implements LicenseSource { static const Map _specialCaseFiles = { '/flutter/third_party/boringssl/src/LICENSE': _RepositoryOpenSSLLicenseFile.new, + '/flutter/third_party/freetype2/LICENSE.TXT': _RepositoryFreetypeLicenseFile.new, '/flutter/third_party/inja/third_party/include/nlohmann/json.hpp': _RepositoryInjaJsonFile.new, '/flutter/third_party/libjpeg-turbo/src/LICENSE': _RepositoryLibJpegTurboLicenseFile.new, '/flutter/third_party/libjpeg-turbo/src/README.ijg': _RepositoryReadmeIjgFile.new, @@ -1000,7 +1001,6 @@ class _RepositoryDirectory extends _RepositoryEntry implements LicenseSource { '/fuchsia/sdk/linux/LICENSE.vulkan': _RepositoryFuchsiaSdkLinuxLicenseFile.new, '/fuchsia/sdk/mac/LICENSE.vulkan': _RepositoryFuchsiaSdkLinuxLicenseFile.new, '/third_party/dart/LICENSE': _RepositoryDartLicenseFile.new, - '/third_party/freetype2/LICENSE.TXT': _RepositoryFreetypeLicenseFile.new, '/third_party/icu/LICENSE': _RepositoryIcuLicenseFile.new, '/third_party/khronos/LICENSE': _RepositoryKhronosLicenseFile.new, '/third_party/libcxx/LICENSE.TXT': _RepositoryCxxStlDualLicenseFile.new, @@ -1440,12 +1440,6 @@ class _RepositoryRootThirdPartyDirectory extends _RepositoryGenericThirdPartyDir @override _RepositoryDirectory createSubdirectory(fs.Directory entry) { - if (entry.name == 'expat') { - return _RepositoryExpatDirectory(this, entry); - } - if (entry.name == 'freetype2') { - return _RepositoryFreetypeDirectory(this, entry); - } if (entry.name == 'icu') { return _RepositoryIcuDirectory(this, entry); } @@ -1765,6 +1759,9 @@ class _RepositoryFlutterThirdPartyDirectory extends _RepositoryGenericThirdParty if (entry.name == 'expat') { return _RepositoryExpatDirectory(this, entry); } + if (entry.name == 'freetype2') { + return _RepositoryFreetypeDirectory(this, entry); + } return super.createSubdirectory(entry); } } diff --git a/tools/licenses/lib/paths.dart b/tools/licenses/lib/paths.dart index 4e44e0b7c87e1..762ab812d38f8 100644 --- a/tools/licenses/lib/paths.dart +++ b/tools/licenses/lib/paths.dart @@ -46,9 +46,13 @@ final Set skippedPaths = { r'flutter/third_party/flatbuffers/python', r'flutter/third_party/flatbuffers/rust', r'flutter/third_party/flatbuffers/ts', + r'flutter/third_party/freetype2/builds', + r'flutter/third_party/freetype2/src/tools', r'flutter/third_party/glfw/deps', // Only used by examples and tests; not linked in build. r'flutter/third_party/glfw/docs', r'flutter/third_party/gn', + r'flutter/third_party/harfbuzz/docs', + r'flutter/third_party/harfbuzz/util', // utils are command line tools that do not end up in the binary r'flutter/third_party/imgui', r'flutter/third_party/inja/doc', // documentation r'flutter/third_party/inja/third_party/amalgamate', // only used at build time @@ -156,11 +160,7 @@ final Set skippedPaths = { r'third_party/dart/third_party/requirejs', // only used by DDC r'third_party/dart/tools', // not shipped in binary r'third_party/google_fonts_for_unit_tests', // only used in web unit tests - r'third_party/freetype2/builds', - r'third_party/freetype2/src/tools', r'third_party/gradle', - r'third_party/harfbuzz/docs', - r'third_party/harfbuzz/util', // utils are command line tools that do not end up in the binary r'third_party/icu/filters', r'third_party/icu/fuzzers', r'third_party/icu/scripts', @@ -462,9 +462,9 @@ final List skippedFilePatterns = [ RegExp(r'^flutter/third_party/boringssl/(?:.+/)*[^/]+_test\.[^/]+$'), RegExp(r'^flutter/third_party/boringssl/src/crypto/fipsmodule/bn/[^/]+.go$'), RegExp(r'^flutter/third_party/boringssl/src/crypto/fipsmodule/ec/[^/]+.go$'), + RegExp(r'^flutter/third_party/freetype2/docs/(?!FTL\.TXT$).+'), // ignore all documentation except the license RegExp(r'^third_party/abseil-cpp/(?:.+/)*[^/]+_test\.[^/]+$'), RegExp(r'^third_party/angle/(?:.+/)*[^/]+_unittest\.[^/]+$'), RegExp(r'^third_party/dart/(?:.+/)*[^/]+_test\.[^/]+$'), - RegExp(r'^third_party/freetype2/docs/(?!FTL\.TXT$).+'), // ignore all documentation except the license RegExp(r'^third_party/zlib/(?:.+/)*[^/]+_unittest\.[^/]+$'), ];