Skip skp files in license check (#8050)

* Skip skp files in license check

This fixes https://bugs.chromium.org/p/skia/issues/detail?id=8828

* Update signature
This commit is contained in:
liyuqian 2019-03-06 08:39:00 -08:00 committed by GitHub
parent 7f16789b2e
commit 3335764ae9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -1,2 +1,2 @@
Signature: 91b3b5b8c1ef9e911fd65b636d009be8
Signature: e7b89482e4ea9fef22a33ad9fcc34961

View File

@ -200,6 +200,7 @@ FileType identifyFile(String name, Reader reader) {
case '.webp': return FileType.binary; // WEBP
case '.pdf': return FileType.binary; // PDF
case '.emf': return FileType.binary; // Windows enhanced metafile format
case '.skp': return FileType.binary; // Skia picture format
// Videos
case '.ogg': return FileType.binary; // Ogg media
case '.mp4': return FileType.binary; // MPEG media