mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 01:17:34 +09:00
parent
470a6e4401
commit
13fcc4a046
949 changed files with 95662 additions and 444 deletions
|
|
@ -3,6 +3,9 @@
|
|||
# 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/.
|
||||
|
||||
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
||||
DIRS += ['interpose']
|
||||
|
||||
EXPORTS.mozilla += [
|
||||
'PluginLibrary.h',
|
||||
]
|
||||
|
|
@ -13,6 +16,7 @@ EXPORTS.mozilla.plugins += [
|
|||
'BrowserStreamParent.h',
|
||||
'ChildAsyncCall.h',
|
||||
'ChildTimer.h',
|
||||
'NPEventOSX.h',
|
||||
'NPEventUnix.h',
|
||||
'NPEventWindows.h',
|
||||
'PluginAsyncSurrogate.h',
|
||||
|
|
@ -32,6 +36,7 @@ EXPORTS.mozilla.plugins += [
|
|||
'PluginScriptableObjectUtils.h',
|
||||
'PluginStreamChild.h',
|
||||
'PluginStreamParent.h',
|
||||
'PluginUtilsOSX.h',
|
||||
'PluginWidgetChild.h',
|
||||
'PluginWidgetParent.h',
|
||||
'StreamNotifyChild.h',
|
||||
|
|
@ -53,6 +58,11 @@ if CONFIG['OS_ARCH'] == 'WINNT':
|
|||
'hangui',
|
||||
]
|
||||
|
||||
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
||||
EXPORTS.mozilla.plugins += [
|
||||
'PluginInterposeOSX.h',
|
||||
]
|
||||
|
||||
SOURCES += [
|
||||
'BrowserStreamChild.cpp',
|
||||
'BrowserStreamParent.cpp',
|
||||
|
|
@ -76,6 +86,12 @@ SOURCES += [
|
|||
'PluginWidgetParent.cpp',
|
||||
]
|
||||
|
||||
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
||||
SOURCES += [
|
||||
'PluginInterposeOSX.mm',
|
||||
'PluginUtilsOSX.mm',
|
||||
]
|
||||
|
||||
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
|
||||
SOURCES += [
|
||||
'D3D11SurfaceHolder.cpp',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue