Differential Revision: https://phabricator.services.mozilla.com/D188240
This commit is contained in:
Marco Bonardo 2023-09-15 07:42:28 +00:00
Родитель 77fe6109bb
Коммит cbc882b7c4
3 изменённых файлов: 10 добавлений и 2 удалений

Просмотреть файл

@ -181,6 +181,8 @@ const char* const ApplicationReputationService::kBinaryFileExtensions[] = {
".applescript", ".applescript",
//".application", exec // MS ClickOnce //".application", exec // MS ClickOnce
//".appref-ms", exec // MS ClickOnce //".appref-ms", exec // MS ClickOnce
//".appx", exec
//".appxbundle", exec
//".arc", //".arc",
//".arj", //".arj",
".as", // Mac archive ".as", // Mac archive
@ -334,6 +336,8 @@ const char* const ApplicationReputationService::kBinaryFileExtensions[] = {
//".msh2xml", exec // Windows shell //".msh2xml", exec // Windows shell
//".mshxml", exec // Windows //".mshxml", exec // Windows
//".msi", exec // Windows installer //".msi", exec // Windows installer
//".msix", exec
//".msixbundle", exec
//".msp", exec // Windows installer //".msp", exec // Windows installer
//".mst", exec // Windows installer //".mst", exec // Windows installer
".ndif", // Mac disk image ".ndif", // Mac disk image

Просмотреть файл

@ -42,6 +42,8 @@ const char* const sExecutableExts[] = {
".app", // executable application ".app", // executable application
".application", // from bug 348763 ".application", // from bug 348763
".appref-ms", // ClickOnce link ".appref-ms", // ClickOnce link
".appx",
".appxbundle",
".asp", ".asp",
".atloc", // Appletalk Location ".atloc", // Appletalk Location
".bas", ".bas",
@ -96,6 +98,8 @@ const char* const sExecutableExts[] = {
".msh2xml", // Microsoft Shell ".msh2xml", // Microsoft Shell
".mshxml", // Microsoft Shell ".mshxml", // Microsoft Shell
".msi", ".msi",
".msix",
".msixbundle",
".msp", ".msp",
".mst", ".mst",
".ops", // Office Profile Settings ".ops", // Office Profile Settings

Просмотреть файл

@ -8,9 +8,9 @@
#define _NS_LOCAL_FILE_COMMON_H_ #define _NS_LOCAL_FILE_COMMON_H_
#ifdef MOZ_ESR #ifdef MOZ_ESR
extern const char* const sExecutableExts[103]; extern const char* const sExecutableExts[107];
#else #else
extern const char* const sExecutableExts[104]; extern const char* const sExecutableExts[108];
#endif #endif
#endif #endif