mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 23:08:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
38
dom/plugins/test/testplugin/thirdplugin/Info.plist
Normal file
38
dom/plugins/test/testplugin/thirdplugin/Info.plist
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>libnpthirdtest.dylib</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>org.mozilla.ThirdTestPlugin</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>BRPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0.0.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>THIRDTEST</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.0.0.0</string>
|
||||
<key>WebPluginName</key>
|
||||
<string>Third Test Plug-in</string>
|
||||
<key>WebPluginDescription</key>
|
||||
<string>Third plug-in for testing purposes.</string>
|
||||
<key>WebPluginMIMETypes</key>
|
||||
<dict>
|
||||
<key>application/x-Third-Test</key>
|
||||
<dict>
|
||||
<key>WebPluginExtensions</key>
|
||||
<array>
|
||||
<string>ts2</string>
|
||||
</array>
|
||||
<key>WebPluginTypeDescription</key>
|
||||
<string>Third test type</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
11
dom/plugins/test/testplugin/thirdplugin/moz.build
Normal file
11
dom/plugins/test/testplugin/thirdplugin/moz.build
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
||||
# vim: set filetype=python:
|
||||
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
SharedLibrary('npthirdtest')
|
||||
|
||||
relative_path = 'thirdplugin'
|
||||
cocoa_name = 'ThirdTest'
|
||||
include('../testplugin.mozbuild')
|
||||
7
dom/plugins/test/testplugin/thirdplugin/nptest.def
Normal file
7
dom/plugins/test/testplugin/thirdplugin/nptest.def
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
LIBRARY NPTHIRDTEST
|
||||
|
||||
EXPORTS
|
||||
NP_GetEntryPoints @1
|
||||
NP_Initialize @2
|
||||
NP_Shutdown @3
|
||||
NP_GetMIMEDescription @4
|
||||
42
dom/plugins/test/testplugin/thirdplugin/nptest.rc
Normal file
42
dom/plugins/test/testplugin/thirdplugin/nptest.rc
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
#include<winver.h>
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Version
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,0,0,0
|
||||
PRODUCTVERSION 1,0,0,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
#else
|
||||
FILEFLAGS 0x0L
|
||||
#endif
|
||||
FILEOS VOS__WINDOWS32
|
||||
FILETYPE VFT_DLL
|
||||
FILESUBTYPE 0x0L
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904e4"
|
||||
BEGIN
|
||||
VALUE "CompanyName", "mozilla.org"
|
||||
VALUE "FileDescription", L"Third plug-in for testing purposes."
|
||||
VALUE "FileExtents", "ts2"
|
||||
VALUE "FileOpenName", "Third test type"
|
||||
VALUE "FileVersion", "1.0"
|
||||
VALUE "InternalName", "npthirdtest"
|
||||
VALUE "MIMEType", "application/x-Third-Test"
|
||||
VALUE "OriginalFilename", "npthirdtest.dll"
|
||||
VALUE "ProductName", "Third Test Plug-in"
|
||||
VALUE "ProductVersion", "1.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x409, 1252
|
||||
END
|
||||
END
|
||||
7
dom/plugins/test/testplugin/thirdplugin/nptest_name.cpp
Normal file
7
dom/plugins/test/testplugin/thirdplugin/nptest_name.cpp
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
||||
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
const char *sPluginName = "Third Test Plug-in";
|
||||
const char *sPluginDescription = "Third plug-in for testing purposes.";
|
||||
const char *sMimeDescription = "application/x-Third-Test:ts3:Third test type";
|
||||
Loading…
Add table
Add a link
Reference in a new issue