mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 23:38:38 +09:00
Issue #80 - De-unify dom/media part 2
This commit is contained in:
parent
094d4730dd
commit
730d952e1b
4 changed files with 11 additions and 5 deletions
|
|
@ -7,7 +7,7 @@
|
|||
if CONFIG['OS_TARGET'] != 'WINNT':
|
||||
Library('media_standalone')
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'../AudioChannelFormat.cpp',
|
||||
'../AudioSegment.cpp',
|
||||
'../SimpleImageBuffer.cpp',
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@
|
|||
#include "nsAppDirectoryServiceDefs.h"
|
||||
#include "nsISupportsImpl.h"
|
||||
#include "mozilla/Logging.h"
|
||||
#include "mozilla/MediaManager.h"
|
||||
|
||||
#undef LOG
|
||||
mozilla::LazyLogModule gMediaParentLog("MediaParent");
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
#include "mozilla/TaskQueue.h"
|
||||
|
||||
#include "gfxPrefs.h"
|
||||
#include "MediaSystemResourceClient.h"
|
||||
#include "MediaSystemResourceManagerChild.h"
|
||||
#include "mozilla/layers/ImageBridgeChild.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ if CONFIG['MOZ_WEBRTC']:
|
|||
'LoadManagerFactory.h',
|
||||
'LoadMonitor.h',
|
||||
]
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'CamerasChild.cpp',
|
||||
'CamerasParent.cpp',
|
||||
'LoadManager.cpp',
|
||||
|
|
@ -24,6 +24,7 @@ if CONFIG['MOZ_WEBRTC']:
|
|||
'/media/webrtc/signaling',
|
||||
'/media/webrtc/trunk',
|
||||
]
|
||||
|
||||
if CONFIG['OS_TARGET'] == 'WINNT':
|
||||
DEFINES['WEBRTC_WIN'] = True
|
||||
else:
|
||||
|
|
@ -34,12 +35,12 @@ if CONFIG['OS_TARGET'] == 'Android':
|
|||
EXPORTS += [
|
||||
'OpenSLESProvider.h'
|
||||
]
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'OpenSLESProvider.cpp',
|
||||
]
|
||||
|
||||
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
||||
UNIFIED_SOURCES += ['OSXRunLoopSingleton.cpp']
|
||||
SOURCES += ['OSXRunLoopSingleton.cpp']
|
||||
EXPORTS += ['OSXRunLoopSingleton.h']
|
||||
|
||||
if CONFIG['_MSC_VER']:
|
||||
|
|
@ -66,7 +67,8 @@ EXPORTS.mozilla.media += ['CamerasTypes.h',
|
|||
'MediaTaskUtils.h',
|
||||
'MediaUtils.h',
|
||||
]
|
||||
UNIFIED_SOURCES += [
|
||||
|
||||
SOURCES += [
|
||||
'MediaChild.cpp',
|
||||
'MediaParent.cpp',
|
||||
'MediaSystemResourceClient.cpp',
|
||||
|
|
@ -76,11 +78,13 @@ UNIFIED_SOURCES += [
|
|||
'MediaSystemResourceService.cpp',
|
||||
'MediaUtils.cpp',
|
||||
]
|
||||
|
||||
IPDL_SOURCES += [
|
||||
'PCameras.ipdl',
|
||||
'PMedia.ipdl',
|
||||
'PMediaSystemResourceManager.ipdl',
|
||||
]
|
||||
|
||||
# /dom/base needed for nsGlobalWindow.h in MediaChild.cpp
|
||||
LOCAL_INCLUDES += [
|
||||
'/dom/base',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue