Add a special case for the Fuchsia SDK ftl.fidl file in the license script (#162423)

Recent versions of the Fuchsia SDK added a source file named "ftl.fidl".
The _licenseNamePattern in the script thinks this file may be a license
because some licenses also use filenames containing "FTL".
This commit is contained in:
Jason Simmons 2025-01-31 10:58:08 -08:00 committed by GitHub
parent 4226d48c52
commit 53f2b136db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -1,2 +1,2 @@
Signature: 6bfdfddcd48b997e778d2edcde1ba11f
Signature: 234e3117f50e69362f815beaffa13970

View File

@ -1032,6 +1032,7 @@ class _RepositoryDirectory extends _RepositoryEntry implements LicenseSource {
'/flutter/third_party/vulkan-deps/vulkan-validation-layers/src/LICENSE.txt':
_RepositoryVulkanApacheLicenseFile.new,
'/fuchsia/sdk/linux/LICENSE.vulkan': _RepositoryFuchsiaSdkLinuxLicenseFile.new,
'/fuchsia/sdk/linux/fidl/fuchsia.storage.ftl/ftl.fidl': _RepositorySourceFile.new,
'/fuchsia/sdk/mac/LICENSE.vulkan': _RepositoryFuchsiaSdkLinuxLicenseFile.new,
'/third_party/khronos/LICENSE': _RepositoryKhronosLicenseFile.new,
};