Differential Revision: https://phabricator.services.mozilla.com/D188240
This commit is contained in:
Marco Bonardo 2023-09-15 14:53:50 +00:00
Родитель 2866dc0f33
Коммит c15e6d24e4
4 изменённых файлов: 14 добавлений и 2 удалений

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

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

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

@ -25,6 +25,8 @@ static const char* const kTestFileExtensions[] = {
".applescript",
".application", // MS ClickOnce
".appref-ms", // MS ClickOnce
".appx",
".appxbundle",
".as", // Mac archive
".asp", // Windows Server script
".asx", // Windows Media Player
@ -155,6 +157,8 @@ static const char* const kTestFileExtensions[] = {
".msh2xml", // Windows shell
".mshxml", // Windows
".msi", // Windows installer
".msix", // Windows installer
".msixbundle", // Windows installer
".msp", // Windows installer
".mst", // Windows installer
".ndif", // Mac disk image

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

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

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

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